diff options
author | Stuart Herbert <stuart@gentoo.org> | 2004-10-10 09:24:57 +0000 |
---|---|---|
committer | Stuart Herbert <stuart@gentoo.org> | 2004-10-10 09:24:57 +0000 |
commit | b1b1c83aab79bbbb0f0e7fa66e4e7ca420f73fea (patch) | |
tree | 763134722633e28aaff3885e345a7f6b29647024 /www-apps | |
parent | 0.4.4 build fails if uim is not present in system. (Manifest recommit) (diff) | |
download | gentoo-2-b1b1c83aab79bbbb0f0e7fa66e4e7ca420f73fea.tar.gz gentoo-2-b1b1c83aab79bbbb0f0e7fa66e4e7ca420f73fea.tar.bz2 gentoo-2-b1b1c83aab79bbbb0f0e7fa66e4e7ca420f73fea.zip |
Added missing patch
Diffstat (limited to 'www-apps')
-rw-r--r-- | www-apps/wordpress/files/1.2.1/login-patch.diff | 19 | ||||
-rw-r--r-- | www-apps/wordpress/files/1.2.1/postinstall-en.txt | 20 |
2 files changed, 39 insertions, 0 deletions
diff --git a/www-apps/wordpress/files/1.2.1/login-patch.diff b/www-apps/wordpress/files/1.2.1/login-patch.diff new file mode 100644 index 000000000000..0b53e8d80886 --- /dev/null +++ b/www-apps/wordpress/files/1.2.1/login-patch.diff @@ -0,0 +1,19 @@ +diff -u --recursive wordpress-orig/wp-admin/auth.php wordpress/wp-admin/auth.php +--- wordpress-orig/wp-admin/auth.php 2004-10-08 20:52:08.184876209 +0100 ++++ wordpress/wp-admin/auth.php 2004-10-08 20:54:31.239067434 +0100 +@@ -25,7 +25,7 @@ + return false;
+
+ } else {
+- if ($login->user_login == $user_login && md5($login->user_pass) == $user_pass_md5) {
++ if ($login->user_login == $user_login && $login->user_pass == $user_pass_md5) {
+ return true;
+ } else {
+ return false;
+@@ -46,4 +46,4 @@ + exit();
+ }
+
+-?> +\ No newline at end of file ++?>
diff --git a/www-apps/wordpress/files/1.2.1/postinstall-en.txt b/www-apps/wordpress/files/1.2.1/postinstall-en.txt new file mode 100644 index 000000000000..1706d7197d2f --- /dev/null +++ b/www-apps/wordpress/files/1.2.1/postinstall-en.txt @@ -0,0 +1,20 @@ +Install instructions +==================== + +1) Open up wp-config-sample.php and fill in your database connection details +2) Save the file as wp-config.php + +3) Launch /wp-admin/install.php in your browser. +4) Note the password given to you. + +The install script should then send you to the login page. + +Sign in with the username admin and the password generated during the installation. + +You can then click on 'Profile' to change the password. + +Upgrade instructions +==================== + +If you are upgrading from <= wordpress-1.2, point your browser to +/wp-admin/upgrade.php |