diff options
author | friendica <info@friendica.com> | 2015-01-26 17:10:05 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-01-26 17:10:05 -0800 |
commit | 9f5bfca28dde23893156ad36682e20ca2fc0dd45 (patch) | |
tree | ae2ae0eb38458287e2f607db2cacacff50c676a9 /install/migrate-mypg.php | |
parent | d73972e8e26d2155a49ef7fe01dda0af85112e09 (diff) | |
parent | aa24d6c8e58f91fadead5cedd8a332aaec1ea64a (diff) | |
download | volse-hubzilla-9f5bfca28dde23893156ad36682e20ca2fc0dd45.tar.gz volse-hubzilla-9f5bfca28dde23893156ad36682e20ca2fc0dd45.tar.bz2 volse-hubzilla-9f5bfca28dde23893156ad36682e20ca2fc0dd45.zip |
Merge https://github.com/friendica/red into pending_merge
Diffstat (limited to 'install/migrate-mypg.php')
-rw-r--r-- | install/migrate-mypg.php | 4 |
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(); |