aboutsummaryrefslogtreecommitdiffstats
path: root/install/migrate-mypg.php
diff options
context:
space:
mode:
authorHabeas Codice <habeascodice@federated.social>2015-01-25 04:04:53 -0800
committerHabeas Codice <habeascodice@federated.social>2015-01-25 04:04:53 -0800
commit200d973581ea808edf56ea249bff0fb0256b039c (patch)
treeabcd6bd459647f404bdc9b23cd171f0d8e742ce3 /install/migrate-mypg.php
parentf9aaa03036b11b00654787475c7ee05c4517b78e (diff)
downloadvolse-hubzilla-200d973581ea808edf56ea249bff0fb0256b039c.tar.gz
volse-hubzilla-200d973581ea808edf56ea249bff0fb0256b039c.tar.bz2
volse-hubzilla-200d973581ea808edf56ea249bff0fb0256b039c.zip
suppress notices that might be confusing
Diffstat (limited to 'install/migrate-mypg.php')
-rw-r--r--install/migrate-mypg.php4
1 files 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 <table> <row>\n";
exit();