1
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2025-08-28 00:00:31 +02:00

Fix undefined index warnings in maintenance scripts.

Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
This commit is contained in:
Edward Z. Yang
2010-05-31 20:07:09 -07:00
parent 00c66fa9cb
commit 96a4193fc9
3 changed files with 5 additions and 4 deletions

View File

@@ -18,8 +18,7 @@ function e($cmd) {
if ($status) exit($status);
}
$php = $_SERVER['argv'][1];
if (!$php) $php = 'php';
$php = empty($_SERVER['argv'][1]) ? 'php' : $_SERVER['argv'][1];
e($php . ' generate-includes.php');
e($php . ' generate-schema-cache.php');