Joomla 1.0.15 & php 5.3

Imprimer PDF

My host has decided to take the move to php 5.3. Sadly, this causes a big problem with the websites I designed with joomla 1.0: content disappears everywhere!

Here is a simple solution to fix it:
Open /includes/Cache/Lite/Function.php and replace at line 74:

$arguments = func_get_args();

with:

$arguments = func_get_args();
$numargs = func_num_args();
for($i=1; $i < $numargs; $i++){
$arguments[$i] = &$arguments[$i];
}

Ajouter un Commentaire


Code de sécurité
Rafraîchir

Documentation:
Creative Commons License

Code Source:
GPL v3

Si vous appréciez mon travail: