Code style changed, ext-user continued:
[mailer.git] / inc / modules / admin / what-list_user_subid.php
index 75dba7e9b911740ad9277b5af5dfe2546c9d5e7c..4249f2785195019e84264f8b8c21f1d153060708 100644 (file)
@@ -44,7 +44,7 @@ if ((!defined('__SECURITY')) || (!isAdmin())) {
 addYouAreHereLink('admin', __FILE__);
 
 // By default show the list...
-$show = true;
+$show = TRUE;
 
 // Check for 'id' element
 if ((countRequestPost() > 0) && (!ifPostContainsSelections('id')) && (!ifPostContainsSelections('subid'))) {
@@ -61,7 +61,7 @@ if (isFormSent('edit')) {
        showEntriesByXmlCallback('admin_edit_show_user_subid');
 
        // Do not show the list of URLs after this template
-       $show = false;
+       $show = FALSE;
 } elseif (isFormSent('do_edit')) {
        // Change data of entries
        showEntriesByXmlCallback('admin_edit_do_user_subid');
@@ -70,7 +70,7 @@ if (isFormSent('edit')) {
        showEntriesByXmlCallback('admin_delete_show_user_subid');
 
        // Do not show the list of URLs after this template
-       $show = false;
+       $show = FALSE;
 } elseif (isFormSent('do_delete')) {
        // Remove entries from database
        showEntriesByXmlCallback('admin_delete_do_user_subid');
@@ -90,7 +90,7 @@ if (isFormSent('edit')) {
                loadIncludeOnce($incFile);
 
                // Do not show the list of URLs after this template
-               $show = false;
+               $show = FALSE;
        } else {
                // Display error message
                reportBug(__FILE__, __LINE__, 'Invalid include file ' . basename($incFile) . ' detected.');
@@ -98,9 +98,9 @@ if (isFormSent('edit')) {
 }
 
 // Show entries?
-if ($show === false) {
+if ($show === FALSE) {
        // No, a form has already been show
-       return false;
+       return FALSE;
 } // END - if
 
 // Is a user id sent?