PDA

View Full Version : UPPERCASE



alpha
10-17-2007, 01:04 AM
Hello, is it possible somehow to display $_POST[Whatever] from template
in whois page in UPPERCASE variant?

Thanks.

alpha
10-17-2007, 08:18 PM
Actually not whatever but domain extensions [[ext]]

Patrick
10-18-2007, 05:20 PM
This is not possible without modifying code.

I think the location to modify this code would be in classes/engine.php :

Find:

function getExt()

{

return $this->ext;

}

And replace with:

function getExt()

{

return strtoupper($this->ext);

}

You can try that and see if things still work (they may not).