Fix the wrong config.php path.

This commit is contained in:
Darko
2015-07-06 09:48:22 +02:00
parent 7493849303
commit b77b5afc7d
2 changed files with 2 additions and 2 deletions
@@ -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;
@@ -15,7 +15,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
require_once dirname(__FILE__) . '/../../../www/config.php';
require_once(dirname(__FILE__) . "/../../../bin/config.php");
use newznab\db\Settings;