Message 'action done' no longer displayed if button 'edit' or 'delete' has been...
authorRoland Häder <roland@mxchange.org>
Fri, 28 Nov 2008 00:03:45 +0000 (00:03 +0000)
committerRoland Häder <roland@mxchange.org>
Fri, 28 Nov 2008 00:03:45 +0000 (00:03 +0000)
inc/modules/member/what-surfbar_list.php

index 5b606d15b58dbcdfa5840c5f954f625bee812d47..b9ac2954a1f25f58480f02ff016a8c7fcb985dfe 100644 (file)
@@ -49,8 +49,11 @@ $URLs = SURFBAR_GET_USER_URLS();
 if ((isset($_POST['ok'])) && (isset($_POST['action'])) && (isset($_POST['id']))) {
        // Process the form
        if (SURFBAR_MEMBER_DO_FORM($_POST, $URLs)) {
 if ((isset($_POST['ok'])) && (isset($_POST['action'])) && (isset($_POST['id']))) {
        // Process the form
        if (SURFBAR_MEMBER_DO_FORM($_POST, $URLs)) {
-               // Action performed
-               LOAD_TEMPLATE("admin_settings_saved", false, MEMBER_SURFBAR_ACTION_DONE);
+               // Action performed but shall we display it?
+               if ((($_POST['action'] != "edit") && ($_POST['action'] != "delete")) || (isset($_POST['execute']))) {
+                       // Display "action done" message if action is wether 'edit' nor 'delete' or has been executed
+                       LOAD_TEMPLATE("admin_settings_saved", false, MEMBER_SURFBAR_ACTION_DONE);
+               } // END - if
        } else {
                // Something went wrong
                LOAD_TEMPLATE("admin_settings_saved", false, MEMBER_SURFBAR_ACTION_FAILED);
        } else {
                // Something went wrong
                LOAD_TEMPLATE("admin_settings_saved", false, MEMBER_SURFBAR_ACTION_FAILED);