]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/login.php
- Rewrites to use more the userid than the actual email address when sending
[mailer.git] / inc / modules / login.php
index 2d9f337dac961605178f980b3e1d8c08d8815c51..3d6ba4b198abbb7d30596a692caabceb5bee9317 100644 (file)
@@ -57,7 +57,9 @@ loadTemplate('member_menu_start');
 
 // Adding the main content module here
 if (!isActionSet()) {
-       if (!isWhatSet()) setWhat('welcome');
+       if (!isWhatSet()) {
+               setWhat('welcome');
+       } // END - if
 } else {
        $action = getAction();
 }
@@ -71,8 +73,8 @@ if ((getConfig('member_menu') == 'Y') || (!isExtensionActive('sql_patches', true
 enableBlockMode(false);
 
 // Menu -> content
-outputHtml("   </td>
-  <td valign=\"top\" align=\"center\" rowspan=\"3\" class=\"member_content\">");
+outputHtml('   </td>
+  <td valign="top" align="center" rowspan="3" class="member_content">');
 
 $inc = sprintf("inc/modules/member/action-%s.php", $action);
 if ((isIncludeReadable($inc)) && (isMenuActionValid('member', getAction(), getWhat()))) {
@@ -89,10 +91,10 @@ if ((getConfig('member_menu') == 'Y') || (!isExtensionActive('sql_patches', true
 
        // Some advertising stuff?
        loadTemplate('member_advert');
-}
+} // END - if
 
-outputHtml("  </td>
-</tr>");
+outputHtml('  </td>
+</tr>');
 
 // Load same template for 'Goto TOP'
 loadTemplate('member_goto_top');
@@ -100,5 +102,5 @@ loadTemplate('member_goto_top');
 // Footer template (Thanx to Mr. Glaus!)
 loadTemplate('member_footer');
 
-//
+// [EOF]
 ?>