From b77b5afc7d1bce2978b63706ec3de2eda246347e Mon Sep 17 00:00:00 2001 From: Darko Date: Mon, 6 Jul 2015 09:48:22 +0200 Subject: [PATCH] Fix the wrong config.php path. --- .../nix_scripts/tmux/lib/testing/DB/setUserPasswordHash.php | 2 +- .../tmux/lib/testing/DB/setUserPasswordHashesToEmail.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/misc/update_scripts/nix_scripts/tmux/lib/testing/DB/setUserPasswordHash.php b/misc/update_scripts/nix_scripts/tmux/lib/testing/DB/setUserPasswordHash.php index f56194e00..d4597d352 100644 --- a/misc/update_scripts/nix_scripts/tmux/lib/testing/DB/setUserPasswordHash.php +++ b/misc/update_scripts/nix_scripts/tmux/lib/testing/DB/setUserPasswordHash.php @@ -6,7 +6,7 @@ * reason, it will allow the password hash on the account to be changed. * Hopefully that will allow admin access to fix any further problems. */ -require_once dirname(__FILE__) . '/../../../www/config.php'; +require_once(dirname(__FILE__) . "/../../../bin/config.php"); use newznab\db\Settings; diff --git a/misc/update_scripts/nix_scripts/tmux/lib/testing/DB/setUserPasswordHashesToEmail.php b/misc/update_scripts/nix_scripts/tmux/lib/testing/DB/setUserPasswordHashesToEmail.php index f8ed6cdd0..4c43f740b 100644 --- a/misc/update_scripts/nix_scripts/tmux/lib/testing/DB/setUserPasswordHashesToEmail.php +++ b/misc/update_scripts/nix_scripts/tmux/lib/testing/DB/setUserPasswordHashesToEmail.php @@ -15,7 +15,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ -require_once dirname(__FILE__) . '/../../../www/config.php'; +require_once(dirname(__FILE__) . "/../../../bin/config.php"); use newznab\db\Settings;