phpgroupware-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Phpgroupware-cvs] comic admin_options.php, 1.7 index.php, 1.9 preferenc


From: powerstat
Subject: [Phpgroupware-cvs] comic admin_options.php, 1.7 index.php, 1.9 preferences.php, 1.10
Date: Thu, 5 May 2005 18:33:00 +0200

Update of comic

Modified Files:
     Branch: MAIN
            admin_options.php lines: +6 -6
            index.php lines: +3 -3
            preferences.php lines: +2 -2

Log Message:
Fixes deprecated (since 2003) call by reference functions calls. All function 
declarations were already correct.

====================================================
Index: comic/admin_options.php
diff -u comic/admin_options.php:1.6 comic/admin_options.php:1.7
--- comic/admin_options.php:1.6 Tue Jul 20 23:51:54 2004
+++ comic/admin_options.php     Thu May  5 16:33:09 2005
@@ -61,11 +61,11 @@

        }

-       comic_admin_data(&$image_source,
-                    &$censor_level,
-                    &$override_enabled,
-                    &$remote_enabled,
-                    &$filesize);
+       comic_admin_data($image_source,
+                    $censor_level,
+                    $override_enabled,
+                    $remote_enabled,
+                    $filesize);

        $remote_checked = "";
        if ($remote_enabled == 1)

====================================================
Index: comic/index.php
diff -u comic/index.php:1.8 comic/index.php:1.9
--- comic/index.php:1.8 Tue Jul 20 23:51:54 2004
+++ comic/index.php     Thu May  5 16:33:09 2005
@@ -47,8 +47,8 @@
     }

     comic_display($comic_list, $comic_scale, $comic_perpage, $user_censorlvl,
-                  $start, &$comic_left_c, &$comic_right_c, &$comic_center_c,
-                  &$matchs_c);
+                  $start, $comic_left_c, $comic_right_c, $comic_center_c,
+                  $matchs_c);

     /**************************************************************************
      * determine the output template

====================================================
Index: comic/preferences.php
diff -u comic/preferences.php:1.9 comic/preferences.php:1.10
--- comic/preferences.php:1.9   Tue Jul 20 23:51:54 2004
+++ comic/preferences.php       Thu May  5 16:33:09 2005
@@ -122,7 +122,7 @@
         $fpscale_checked = "checked";
     }

-    template_options($comic_template, &$t_options_c, &$t_images_c);
+    template_options($comic_template, $t_options_c, $t_images_c);

     $prefs_tpl = $GLOBALS['phpgw']->template;
     $prefs_tpl->set_unknowns("remove");






reply via email to

[Prev in Thread] Current Thread [Next in Thread]