| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- Index: wordpress/wp-includes/canonical.php
- --- wordpress/wp-includes/canonical.php.orig 2008-05-25 17:45:05 +0200
- +++ wordpress/wp-includes/canonical.php 2008-08-06 09:26:50 +0200
- @@ -144,6 +144,12 @@
- if ( isset($user_home['host']) )
- $redirect['host'] = $user_home['host'];
-
- + // SHAMELESS HACK TO MAKE WORDPRESS THINK IT IS RUNNING UNDER PORT 80
- + // TO FIX THE URL TROUBLE WITH THE USUAL FRONTEND APACHE WEBSERVER! --rse
- + $user_home['port'] = 80;
- + $redirect['port'] = 80;
- + $original['port'] = 80;
- +
- // Handle ports
- if ( isset($user_home['port']) )
- $redirect['port'] = $user_home['port'];
- Index: wordpress/wp-login.php
- --- wordpress/wp-login.php.orig 2008-07-11 22:14:44 +0200
- +++ wordpress/wp-login.php 2008-08-06 09:26:50 +0200
- @@ -138,7 +138,7 @@
- $wpdb->query($wpdb->prepare("UPDATE $wpdb->users SET user_activation_key = %s WHERE user_login = %s", $key, $user_login));
- }
- $message = __('Someone has asked to reset the password for the following site and username.') . "\r\n\r\n";
- - $message .= get_option('siteurl') . "\r\n\r\n";
- + $message .= sprintf(__('Website: %s'), get_option('siteurl')) . "\r\n";
- $message .= sprintf(__('Username: %s'), $user_login) . "\r\n\r\n";
- $message .= __('To reset your password visit the following address, otherwise just ignore this email and nothing will happen.') . "\r\n\r\n";
- $message .= site_url("wp-login.php?action=rp&key=$key", 'login') . "\r\n";
- Index: wordpress/wp-mail.php
- --- wordpress/wp-mail.php.orig 2008-05-25 17:50:15 +0200
- +++ wordpress/wp-mail.php 2008-08-06 09:26:50 +0200
- @@ -143,6 +143,7 @@
- // Author not found in DB, set status to pending. Author already set to admin.
- $post_status = 'pending';
- }
- + $post_status = 'draft';
-
- $subject = trim($subject);
-
- Index: wp-hashcash/wp-hashcash.php
- --- wp-hashcash/wp-hashcash.php.orig 2008-07-30 10:07:02 +0200
- +++ wp-hashcash/wp-hashcash.php 2008-08-06 09:27:21 +0200
- @@ -521,7 +521,6 @@
- }
-
- echo '<div><input type="hidden" id="wphc_value" name="wphc_value" value=""/></div>';
- - echo '<p>' . __('Powered by', 'wp-hashcash') . ' <a href="http://wordpress-plugins.feifei.us/hashcash/">WP Hashcash</a></p>';
- echo '<noscript><div><small>Wordpress Hashcash needs javascript to work, but your browser has javascript disabled. Your comment will be '.$verb.'!</small></div></noscript>';
- }
-
|