Skip to content

Commit

Permalink
Find adminer/ in compile.php directory
Browse files Browse the repository at this point in the history
git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@857 7c3ca157-0c34-0410-bff1-cbf682f78f5c
  • Loading branch information
jakubvrana committed Jul 20, 2009
1 parent 228e43a commit 943a3e8
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions compile.php
Expand Up @@ -176,7 +176,7 @@ function compile_file($match) {

error_reporting(4343); // errors and warnings
$project = "adminer";
if (file_exists($_SERVER["argv"][1] . "/index.php")) {
if (file_exists(dirname(__FILE__) . "/" . $_SERVER["argv"][1] . "/index.php")) {
$project = $_SERVER["argv"][1];
array_shift($_SERVER["argv"]);
}
Expand All @@ -190,7 +190,6 @@ function compile_file($match) {
include dirname(__FILE__) . "/$project/lang/$_COOKIE[adminer_lang].inc.php";
}

$filename = $project . ($_COOKIE["adminer_lang"] ? "-$_COOKIE[adminer_lang]" : "") . ".php";
$file = file_get_contents(dirname(__FILE__) . "/$project/index.php");
$file = preg_replace('(' . str_replace(' ', '\\s*', preg_quote(' if (isset($_GET["coverage"])) { include "./coverage.inc.php"; }')) . ')', '', $file);
$file = preg_replace_callback('~\\b(include|require) "([^"]*)";~', 'put_file', $file);
Expand All @@ -212,5 +211,5 @@ function compile_file($match) {
$file = str_replace("../externals/jush/", "http://jush.sourceforge.net/", $file);
$file = preg_replace("~<\\?php\\s*\\?>\n?|\\?>\n?<\\?php~", '', $file);
$file = php_shrink($file);
fwrite(fopen($filename, "w"), $file); // file_put_contents() since PHP 5
fwrite(fopen($project . ($_COOKIE["adminer_lang"] ? "-$_COOKIE[adminer_lang]" : "") . ".php", "w"), $file); // file_put_contents() since PHP 5
echo "$filename created.\n";

0 comments on commit 943a3e8

Please sign in to comment.