From: Ævar Arnfjörð Bjarmason Date: Sat, 30 Jul 2005 19:47:39 +0000 (+0000) Subject: * (bug 2885, 2931) Problems with references in php 4.4 and 5.1 X-Git-Tag: 1.5.0beta4~4 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/operations/?a=commitdiff_plain;h=fca9da350e9cf5060dcc545f771c9f39ed7d6537;p=lhc%2Fweb%2Fwiklou.git * (bug 2885, 2931) Problems with references in php 4.4 and 5.1 --- diff --git a/languages/Language.php b/languages/Language.php index 4fe129bf73..01c5962867 100644 --- a/languages/Language.php +++ b/languages/Language.php @@ -2666,7 +2666,7 @@ class Language { # Fill a MagicWord object with data from here function getMagic( &$mw ) { - $raw =& $this->getMagicWords(); + $raw = $this->getMagicWords(); if( !isset( $raw[$mw->mId] ) ) { # Fall back to English if local list is incomplete $raw =& Language::getMagicWords();