mailer project continued:
[mailer.git] / inc / modules / admin / what-mem_add.php
index e36e9ea5ba444fc9f65e51242f1f359b6ccdb830..2ac057db6260d41cf23d6d424c28ae75cfbc81e3 100644 (file)
@@ -17,7 +17,7 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
+ * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
  * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -63,13 +63,13 @@ if (!isFormSent()) {
                // @TODO Cant this be rewritten?
                while ($content = SQL_FETCHARRAY($result)) {
                        // Menu actions
-                       $menus[] = $content['action'];
+                       array_push($menus, $content['action']);
 
                        // Menu titles
-                       $titles[] = $content['title'];
+                       array_push($titles, $content['title']);
 
                        // Below this menu point should the new be added so we simply increase the sort value by 1 :-)
-                       $below[] = $content['sort'] + 1;
+                       array_push($below, $content['sort'] + 1);
                } // END - if
 
                // Free memory
@@ -108,13 +108,13 @@ if (!isFormSent()) {
                                // Read menu structure
                                while ($content = SQL_FETCHARRAY($result)) {
                                        // Menu actions
-                                       $menus[$value_main][] = $content['what'];
+                                       array_push($menus[$value_main], $content['what']);
 
                                        // Menu titles
-                                       $titles[$value_main][] = $content['title'];
+                                       array_push($titles[$value_main], $content['title']);
 
                                        // Below this menu point should the new be added so we simply increase the sort value by 1 :-)
-                                       $below[$value_main][] = $content['sort'] + 1;
+                                       array_push($below[$value_main], $content['sort'] + 1);
                                } // END - while
 
                                // Free memory