X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-list_rallyes.php;h=81cc4ae8aeb05aba9c2f840438632f87eae34dff;hp=205d3c2139a6aaad6a355e25f2d37723be094e78;hb=f2aeaab0cd313b2eeb151642455ed558f6b186dc;hpb=d2e5508023052562516f3e8526814609bda4d90f diff --git a/inc/modules/admin/what-list_rallyes.php b/inc/modules/admin/what-list_rallyes.php index 205d3c2139..81cc4ae8ae 100644 --- a/inc/modules/admin/what-list_rallyes.php +++ b/inc/modules/admin/what-list_rallyes.php @@ -123,10 +123,10 @@ if (isGetRequestParameterSet('rallye')) { runFilterChain('run_sqls'); // Output message - $message = getMessage('RALLYE_DELETED'); + $message = '{--RALLYE_DELETED--}'; } else { // No rallye selected to delete! - $message = getMessage('RALLYE_DELETE_NOTHING_SELECTED'); + $message = '{--RALLYE_DELETE_NOTHING_SELECTED--}'; } } elseif (isFormSent('change')) { // Change rallye @@ -173,7 +173,7 @@ LIMIT 1", runFilterChain('run_sqls'); // Output message - $message = getMessage('RALLYE_CHANGED'); + $message = '{--RALLYE_CHANGED--}'; } } @@ -349,12 +349,12 @@ ORDER BY case 'Y': // Rallye is active so do not edit it! $row['select'] = '
' . $row['id'] . '
'; - $row['active_title'] = getMessage('RALLYE_DEACTIVATE_NOW'); + $row['active_title'] = '{--RALLYE_DEACTIVATE_NOW--}'; $row['active'] = '0'; break; case 'N': - $row['active_title'] = getMessage('RALLYE_ACTIVATE_NOW'); + $row['active_title'] = '{--RALLYE_ACTIVATE_NOW--}'; $row['active'] = 1; break; } // END - switch @@ -362,12 +362,12 @@ ORDER BY // Notification to members? switch ($data['send_notify']) { case 'Y': - $row['notify_title'] = getMessage('RALLYE_STOP_NOTIFY_NOW'); + $row['notify_title'] = '{--RALLYE_STOP_NOTIFY_NOW--}'; $row['notify'] = '0'; break; case 'N': - $row['notify_title'] = getMessage('RALLYE_START_NOTIFY_NOW'); + $row['notify_title'] = '{--RALLYE_START_NOTIFY_NOW--}'; $row['notify'] = 1; break; } // END - switch @@ -375,12 +375,12 @@ ORDER BY // Auto-add of new joined members? switch ($data['auto_add_new_user']) { case 'Y': - $row['auto_title'] = getMessage('RALLYE_STOP_AUTO_ADD_NOW'); + $row['auto_title'] = '{--RALLYE_STOP_AUTO_ADD_NOW--}'; $row['auto'] = '0'; break; case 'N': - $row['auto_title'] = getMessage('RALLYE_START_AUTO_ADD_NOW'); + $row['auto_title'] = '{--RALLYE_START_AUTO_ADD_NOW--}'; $row['auto'] = 1; break; } // END - switch