Configuration of advertisement networks prepared, CSS cleaned up, HTML rewritten:
[mailer.git] / inc / modules / admin / what-config_points.php
index 11c41ffef6e1997591fb69e245ca02b1660a2ef2..86501051d9528aa50f7fd7218d9b212ad7a91661 100644 (file)
@@ -100,7 +100,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 +185,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 +195,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 = '';