[geeklog-hg] geeklog: No more pass-by-reference. Fix of a fix for bug #0001531

geeklog-cvs at lists.geeklog.net geeklog-cvs at lists.geeklog.net
Fri Dec 21 15:20:18 EST 2012


changeset 8882:791afa8d8d59
url:  http://project.geeklog.net/cgi-bin/hgwebdir.cgi/geeklog/rev/791afa8d8d59
user: Tom <websitemaster at cogeco.net>
date: Fri Dec 21 15:20:01 2012 -0500
description:
No more pass-by-reference. Fix of a fix for bug #0001531

diffstat:

 public_html/lib-common.php |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r 7ac0dee05584 -r 791afa8d8d59 public_html/lib-common.php
--- a/public_html/lib-common.php	Thu Dec 20 17:58:07 2012 -0500
+++ b/public_html/lib-common.php	Fri Dec 21 15:20:01 2012 -0500
@@ -1643,7 +1643,7 @@
     $function = $_CONF['theme'] . '_createHTMLDocument';
 
     if( function_exists($function)) {
-        return $function(&$content, $information);
+        return $function($content, $information);
     }
 
     // If we reach here then either we have the default theme OR



More information about the geeklog-cvs mailing list