Bug 12023 - move InstallAuth.pm to be in C4

InstallAuth was in the installer directory, which meant that Plack was
unable to find it, and so running the webinstaller would fail. This
moves it into C4,

Test plan:
* Make sure the web installer runs under plack
* Make sure the web installer runs under non-plack

Signed-off-by: Brendan Gallagher <brendan@bywatersolutions.com>
Signed-off-by: Jonathan Druart <jonathan.druart@biblibre.com>
Signed-off-by: Galen Charlton <gmc@esilibrary.com>
This commit is contained in:
Robin Sheat 2014-04-02 17:20:08 +13:00 committed by Galen Charlton
parent 3de4948bda
commit c2391b796b
2 changed files with 2 additions and 5 deletions

View file

@ -1,7 +1,4 @@
# -*- tab-width: 8 -*-
# NOTE: This file uses 8-character tabs; do not change the tab size!
package InstallAuth;
package C4::InstallAuth;
# Copyright 2000-2002 Katipo Communications
#

View file

@ -4,7 +4,7 @@ use strict;
use warnings;
use diagnostics;
use InstallAuth;
use C4::InstallAuth;
use CGI;
use IPC::Cmd;