Changeset 945 for trunk/wp-login.php
- Timestamp:
- 02/26/2004 04:15:48 PM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-login.php
r880 r945 164 164 <title>WordPress › Lost password ?</title> 165 165 <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $blog_charset; ?>" /> 166 <link rel="stylesheet" href="<?php echo $siteurl; ?>/wp-admin/wp-admin.css" type="text/css" />166 <link rel="stylesheet" href="<?php echo get_settings('siteurl'); ?>/wp-admin/wp-admin.css" type="text/css" /> 167 167 <script type="text/javascript"> 168 168 function focusit() { … … 212 212 $message = "Login: $user_login\r\n"; 213 213 $message .= "Password: $user_pass\r\n"; 214 $message .= "Login at: $siteurl/wp-login.php";214 $message .= 'Login at: ' . get_settings('siteurl') . '/wp-login.php'; 215 215 216 216 $m = mail($user_email, "[$blogname] Your weblog's login/password", $message); … … 268 268 <title>WordPress > <?php bloginfo('name') ?> > Login form</title> 269 269 <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $blog_charset; ?>" /> 270 <link rel="stylesheet" href="<?php echo $siteurl; ?>/wp-admin/wp-admin.css" type="text/css" />270 <link rel="stylesheet" href="<?php echo get_settings('siteurl'); ?>/wp-admin/wp-admin.css" type="text/css" /> 271 271 <script type="text/javascript"> 272 272 function focusit() { … … 281 281 <div id="login"> 282 282 <p> 283 <a href="<?php echo $siteurl?>" title="Are you lost?">Back to blog?</a><br />283 <a href="<?php echo get_settings('siteurl'); ?>" title="Are you lost?">Back to blog?</a><br /> 284 284 <?php if ($users_can_register) { ?> 285 <a href="<?php echo $siteurl; ?>/wp-register.php" title="Register to be an author">Register?</a><br />285 <a href="<?php echo get_settings('siteurl'); ?>/wp-register.php" title="Register to be an author">Register?</a><br /> 286 286 <?php } ?> 287 <a href="<?php echo $siteurl; ?>/wp-login.php?action=lostpassword" title="Password Lost and Found">Lost your password?</a>287 <a href="<?php echo get_settings('siteurl'); ?>/wp-login.php?action=lostpassword" title="Password Lost and Found">Lost your password?</a> 288 288 </p> 289 289
Note: See TracChangeset
for help on using the changeset viewer.