From 200d973581ea808edf56ea249bff0fb0256b039c Mon Sep 17 00:00:00 2001 From: Habeas Codice Date: Sun, 25 Jan 2015 04:04:53 -0800 Subject: suppress notices that might be confusing --- install/migrate-mypg.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install/migrate-mypg.php b/install/migrate-mypg.php index 10bf1e387..cfd4f681a 100644 --- a/install/migrate-mypg.php +++ b/install/migrate-mypg.php @@ -33,7 +33,7 @@ function parse_htconfig($file) { function get_configtype(array $data) { if(!isset($data['host'], $data['user'], $data['pass'], $data['data'])) return 'none'; - if($data['type'] == 1) + if(@$data['type'] == 1) return 'pgsql'; return 'mysql'; } @@ -112,7 +112,7 @@ foreach(array('install','include','mod','view') as $dir) { } $cfgfile = '.htconfig.php'; -if($argv[1] == '--resume') { +if($argc >= 2 && $argv[1] == '--resume') { if($argc < 4) { echo "Resume usage {$argv[0]} --resume \n"; exit(); -- cgit v1.2.3