https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113397

Revision: 113397
Author:   yaron
Date:     2012-03-08 20:27:53 +0000 (Thu, 08 Mar 2012)
Log Message:
-----------
Fix for r103025 - removed apparently-unnecessary "&" for function call

Modified Paths:
--------------
    trunk/extensions/SemanticForms/includes/SF_FormUtils.php

Modified: trunk/extensions/SemanticForms/includes/SF_FormUtils.php
===================================================================
--- trunk/extensions/SemanticForms/includes/SF_FormUtils.php    2012-03-08 
20:13:42 UTC (rev 113396)
+++ trunk/extensions/SemanticForms/includes/SF_FormUtils.php    2012-03-08 
20:27:53 UTC (rev 113397)
@@ -986,7 +986,7 @@
         */
        public static function getFormCache() {
                global $sfgFormCacheType, $wgParserCacheType;
-               $ret = & wfGetCache( ( $sfgFormCacheType !== null ) ? 
$sfgFormCacheType : $wgParserCacheType  );
+               $ret = wfGetCache( ( $sfgFormCacheType !== null ) ? 
$sfgFormCacheType : $wgParserCacheType  );
                return $ret;
        }
 


_______________________________________________
MediaWiki-CVS mailing list
MediaWiki-CVS@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-cvs

Reply via email to