gforge-commits
[Top][All Lists]
Advanced

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

[Gforge-commits] gforge/www/admin/trove trove_cat_list.php, 1.9, 1.10 tr


From: gsmet
Subject: [Gforge-commits] gforge/www/admin/trove trove_cat_list.php, 1.9, 1.10 trove_cat_edit.php, 1.20, 1.21 trove_cat_add.php, 1.8, 1.9
Date: Fri, 08 Oct 2004 16:39:24 -0500

Update of /cvsroot/gforge/gforge/www/admin/trove
In directory db.perdue.net:/tmp/cvs-serv6349/www/admin/trove

Modified Files:
        trove_cat_list.php trove_cat_edit.php trove_cat_add.php 
Log Message:
fixed a lot of malformed strings
fixed missing $ in variable name
fixed some parse errors

Index: trove_cat_list.php
===================================================================
RCS file: /cvsroot/gforge/gforge/www/admin/trove/trove_cat_list.php,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- trove_cat_list.php  27 Aug 2004 19:02:18 -0000      1.9
+++ trove_cat_list.php  8 Oct 2004 21:39:20 -0000       1.10
@@ -33,7 +33,7 @@
        global $Language;
        print ('<br />');
 
-       for ($i=0;$i<$GLOBALS[depth];$i++) {
+       for ($i=0;$i<$GLOBALS['depth'];$i++) {
                print "&nbsp; &nbsp; ";
        }
 

Index: trove_cat_edit.php
===================================================================
RCS file: /cvsroot/gforge/gforge/www/admin/trove/trove_cat_edit.php,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- trove_cat_edit.php  27 Aug 2004 19:02:18 -0000      1.20
+++ trove_cat_edit.php  8 Oct 2004 21:39:20 -0000       1.21
@@ -39,7 +39,7 @@
 
        $newroot = trove_getrootcat($GLOBALS['form_parent']);
 
-       if ($GLOBALS[form_shortname]) {
+       if ($GLOBALS['form_shortname']) {
                if ($form_trove_cat_id == $form_parent) {
                        exit_error($Language->getText(
                                                                
'admin_trove_cat_edit','error_tove_equal_parent'),

Index: trove_cat_add.php
===================================================================
RCS file: /cvsroot/gforge/gforge/www/admin/trove/trove_cat_add.php,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- trove_cat_add.php   27 Aug 2004 19:02:18 -0000      1.8
+++ trove_cat_add.php   8 Oct 2004 21:39:21 -0000       1.9
@@ -34,7 +34,7 @@
 if ($GLOBALS['submit']) {
        $newroot = trove_getrootcat($GLOBALS['form_parent']);
 
-       if ($GLOBALS[form_shortname]) {
+       if ($GLOBALS['form_shortname']) {
                $res = db_query("
                        INSERT INTO trove_cat 
                                
(shortname,fullname,description,parent,version,root_parent)





reply via email to

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