Changeset 6708
- Timestamp:
- 09/13/08 15:04:03 (3 months ago)
- Files:
-
- freepbx/branches/2.5/amp_conf/htdocs/admin/common/db_connect.php (modified) (1 diff)
- freepbx/branches/2.5/install_amp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
freepbx/branches/2.5/amp_conf/htdocs/admin/common/db_connect.php
r6525 r6708 72 72 // Now send or delete warning wrt to default passwords: 73 73 // 74 if (! $quietmode) {74 if (!isset($quietmode) || !$quietmode) { 75 75 $nt = notifications::create($db); 76 76 freepbx/branches/2.5/install_amp
r6601 r6708 803 803 } 804 804 // If they pre-set this in their amportal.conf or this is an upgrade, we should honor it as well 805 if($amp_conf["FOPDISABLE"] == "true" || $amp_conf["FOPDISABLE"] == "YES" || $amp_conf["FOPDISABLE"] == "yes" || $amp_conf["FOPDISABLE"] == "Yes" || $amp_conf["FOPDISABLE"] == "y" ) { 805 // 806 if (isset($amp_conf['FOPDISABLE']) && (strtolower(trim($amp_conf['FOPDISABLE'])) == 'true' || strtolower(trim($amp_conf['FOPDISABLE'])) == 'yes' || strtolower(trim($amp_conf['FOPDISABLE'])) == 'y') ) { 806 807 $install_fop = false; 807 808 }
