]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_points.php
Fixed parse error
[mailer.git] / inc / modules / admin / what-config_points.php
index 11c41ffef6e1997591fb69e245ca02b1660a2ef2..78d995c954666f0a5ceee10293b8590462dac62c 100644 (file)
@@ -14,8 +14,6 @@
  * $Date::                                                            $ *
  * $Tag:: 0.2.1-FINAL                                                 $ *
  * $Author::                                                          $ *
- * Needs to be in all Files and every File needs "svn propset           *
- * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
@@ -100,7 +98,7 @@ if (isFormSent()) {
                                        $message = '{--ADMIN_REFERAL_DEPTHS_SAVED--}';
                                        break;
 
-                               case 'del':
+                               case 'delete':
                                        foreach (postRequestParameter('id') as $id => $value) {
                                                SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_refdepths` WHERE `id`=%s LIMIT 1",
                                                array(bigintval($id)), __FILE__, __LINE__);
@@ -185,7 +183,7 @@ WHERE
        loadTemplate('admin_config_point_settings', false, $content);
 } elseif (getRequestParameter('sub') == 'ref') {
        // 12          3     32    2                        3321
-       if ((isFormSent('del')) && (ifPostContainsSelections())) {
+       if ((isFormSent('delete')) && (ifPostContainsSelections())) {
                // Delete entries
                $OUT = '';
                foreach (postRequestParameter('sel') as $id => $value) {
@@ -195,11 +193,11 @@ WHERE
                        SQL_FREERESULT($result);
 
                        // Load row template and switch color
-                       $OUT .= loadTemplate('admin_del_reflevel_row', true, $content);
+                       $OUT .= loadTemplate('admin_delete_reflevel_row', true, $content);
                } // END - foreach
 
                // Load main template
-               loadTemplate('admin_del_reflevel', false, $OUT);
+               loadTemplate('admin_delete_reflevel', false, $OUT);
        } elseif ((isFormSent('edit')) && (ifPostContainsSelections())) {
                // Edit entries
                $OUT = '';