From a9c818418b81b93680170e1a84d4e221e578ad2f Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 09:56:53 +0200 Subject: Adding debian version 6.4.3+dfsg1-1. Signed-off-by: Daniel Baumann --- debian/patches/003installer.patch | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 debian/patches/003installer.patch (limited to 'debian/patches/003installer.patch') diff --git a/debian/patches/003installer.patch b/debian/patches/003installer.patch new file mode 100644 index 0000000..1ad3a01 --- /dev/null +++ b/debian/patches/003installer.patch @@ -0,0 +1,16 @@ +Description: Patching install.php to permit a valid upload path +Author: +Reviewed-by: Craig Small +Last-Update: 2023-08-10 +--- a/wp-admin/install.php ++++ b/wp-admin/install.php +@@ -423,6 +423,9 @@ + if ( false === $error ) { + $wpdb->show_errors(); + $result = wp_install( $weblog_title, $user_name, $admin_email, $public, '', wp_slash( $admin_password ), $loaded_language ); ++ // Setup upload directories for Debian #430781 ++ $wpdb->query("UPDATE $wpdb->options set option_value = '$upload_path' where option_name = 'upload_path'"); ++ $wpdb->query("UPDATE $wpdb->options set option_value = '$upload_url_path' where option_name = 'upload_url_path'"); + ?> + +

-- cgit v1.2.3