diff options
author | Simo Leone <simo@archlinux.org> | 2008-07-28 17:22:01 +0200 |
---|---|---|
committer | Simo Leone <simo@archlinux.org> | 2008-07-28 17:27:38 +0200 |
commit | c85dfacc747387b9be6c53b4518ac680b505e0f7 (patch) | |
tree | 27ad685d04b5918a82130889fa1f494bda0b7efc /web/html | |
parent | 4372ddb91476523535441b257c286ef413aec66e (diff) | |
download | aur-c85dfacc747387b9be6c53b4518ac680b505e0f7.tar.gz aur-c85dfacc747387b9be6c53b4518ac680b505e0f7.tar.xz |
Include File/Find.php PEAR module1.5.2
Since this module requires root to install
system-wide, and is somewhat rare, it's better
to just include it in the AUR code itself.
Signed-off-by: Simo Leone <simo@archlinux.org>
Diffstat (limited to 'web/html')
-rw-r--r-- | web/html/pkgsubmit.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/html/pkgsubmit.php b/web/html/pkgsubmit.php index 4d15ebe4..abd66140 100644 --- a/web/html/pkgsubmit.php +++ b/web/html/pkgsubmit.php @@ -1,10 +1,10 @@ <?php +set_include_path(get_include_path() . PATH_SEPARATOR . '../lib' . PATH_SEPARATOR . '../lang'); include("config.inc"); -set_include_path(get_include_path() . PATH_SEPARATOR . '../lib' . PATH_SEPARATOR . '../lang'); require('Archive/Tar.php'); -require('File/Find.php'); +require('Find.php'); include("aur.inc"); # access AUR common functions include("submit_po.inc"); # use some form of this for i18n support |