HomeHelpTrac

Ignore:
Timestamp:
06/07/11 23:41:51 (12 months ago)
Author:
Alexander Trofimov
Message:

Code cleaning:

  • converting new lines to \n
  • deleting spaces at the end of every line
  • converting all tabs to 4 spaces
  • automated script for future cleaning was added
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/activation_email.php

    r15201 r15211  
    2525function PageCompMainCode() { 
    2626 
    27     $iMemberID = getLoggedId(); 
    28     $aProfile = getProfileInfo($iMemberID);  
     27    $iMemberID = getLoggedId(); 
     28    $aProfile = getProfileInfo($iMemberID); 
    2929 
    30     if ($aProfile['Status'] != 'Unconfirmed') 
    31         $s = _t("_NO_NEED_TO_CONFIRM_EMAIL"); 
    32     else 
    33         $s = activation_mail($iMemberID); 
     30    if ($aProfile['Status'] != 'Unconfirmed') 
     31        $s = _t("_NO_NEED_TO_CONFIRM_EMAIL"); 
     32    else 
     33        $s = activation_mail($iMemberID); 
    3434 
    3535    return DesignBoxContent(_t("_ACTIVATION_EMAIL_H"), $s, BX_DB_PADDING_DEF); 
Note: See TracChangeset for help on using the changeset viewer.