Changeset 96
- Timestamp:
- 08/01/07 12:45:59 (1 year ago)
- Files:
-
- branches/TRY-PD-phpInfoCard/wp-infocard/wp/clickback.pw.php (modified) (1 diff)
- branches/TRY-PD-phpInfoCard/wp-infocard/wp/login/infocard-clickback.php (modified) (1 diff)
- branches/TRY-PD-phpInfoCard/wp-infocard/wp/login/infocard-login.php (modified) (1 diff)
- branches/TRY-PD-phpInfoCard/wp-infocard/wp/utils.pw.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/TRY-PD-phpInfoCard/wp-infocard/wp/clickback.pw.php
r95 r96 104 104 $clickbackUrl = PW_SECUREPLUGINURL . "/" . PW_PLUGIN . "/login/infocard-clickback.php?clickbackID=" . $clickbackID; 105 105 106 $message = sprintf('Please complete your registration at %s by opening the link below.', pw_utils:: printTitle()) . "\r\n\r\n";106 $message = sprintf('Please complete your registration at %s by opening the link below.', pw_utils::getTitle()) . "\r\n\r\n"; 107 107 $message .= $clickbackUrl."\r\n\r\nThanks\r\n"; 108 108 // sendEmail: to-address, subject, body branches/TRY-PD-phpInfoCard/wp-infocard/wp/login/infocard-clickback.php
r67 r96 41 41 <div id="pw_login_main"> 42 42 <div id="pw_login_header"> 43 <h1><?php pw_utils::screenPrint('Verify your account at: ' ) . pw_utils::printTitle(); ?></h1>43 <h1><?php pw_utils::screenPrint('Verify your account at: ' . pw_utils::getTitle()); ?></h1> 44 44 </div> 45 45 <div id="pw_login_links"> branches/TRY-PD-phpInfoCard/wp-infocard/wp/login/infocard-login.php
r63 r96 34 34 <div id="pw_login_main"> 35 35 <div id="pw_login_header"> 36 <h1><?php pw_utils::screenPrint('Information Card Login: ' ) . pw_utils::printTitle(); ?></h1>36 <h1><?php pw_utils::screenPrint('Information Card Login: ' . pw_utils::getTitle()); ?></h1> 37 37 </div> 38 38 <div id="pw_login_links"> branches/TRY-PD-phpInfoCard/wp-infocard/wp/utils.pw.php
r66 r96 63 63 } 64 64 } // end function printTitle 65 66 /* 67 Function: getTitle 68 Description: returns the site title 69 Input: none 70 Output: string representing the title 71 Side Effects: none 72 */ 73 function getTitle() 74 { 75 if ( function_exists('get_settings') ) 76 return get_settings('blogname'); 77 else 78 return PW_SECURESITEURL; 79 } // end function getTitle 65 80 66 81 function printHomeLink(){
