1
Joomla! 1.6/1.7/2.5 / Re:E' un attacco hacker?
« il: 28 Dic 2014, 22:55:05 »
Ho scaricato l'ultima versione di joomla 2.5 e ho confrontato web.php con quello che avevo io online e c'è questo in più rispetto a quello scaricato
// If a input object is given use it.
if ($input instanceof JInput)
{
$this->input = $input;
}
// Create the input based on the application logic.
else
{
$this->input = new JInput;
}
// If a config object is given use it.
if ($config instanceof JRegistry)
{
$this->config = $config;
}
// Instantiate a new configuration object.
else
{
$this->config = new JRegistry;
}
// If a client object is given use it.
if ($client instanceof JWebClient)
{
$this->client = $client;
}
// Instantiate a new web client object.
else
{
$this->client = new JWebClient;
}
vi dice nulla?
// If a input object is given use it.
if ($input instanceof JInput)
{
$this->input = $input;
}
// Create the input based on the application logic.
else
{
$this->input = new JInput;
}
// If a config object is given use it.
if ($config instanceof JRegistry)
{
$this->config = $config;
}
// Instantiate a new configuration object.
else
{
$this->config = new JRegistry;
}
// If a client object is given use it.
if ($client instanceof JWebClient)
{
$this->client = $client;
}
// Instantiate a new web client object.
else
{
$this->client = new JWebClient;
}
vi dice nulla?