Solve conflict classes/class.installer.php and controllers/installer.php
Changed classes/class.installer.php -> classes/PmInstaller.php
Changed and verified usages of each class.
This commit is contained in:
davidcallizaya
2017-08-04 18:44:16 -04:00
parent f0be31202c
commit ce810e444c
6 changed files with 6 additions and 6 deletions

View File

@@ -21,7 +21,7 @@
* For more information, contact Colosa Inc, 2566 Le Jeune Rd.,
* Coral Gables, FL, 33134, USA, or email info@colosa.com.
*/
$inst = new Installer();
$inst = new PmInstaller();
$oProcess = new Processes();

View File

@@ -21,7 +21,7 @@
* For more information, contact Colosa Inc, 2566 Le Jeune Rd.,
* Coral Gables, FL, 33134, USA, or email info@colosa.com.
*/
$inst = new Installer();
$inst = new PmInstaller();
$oProcess = new Processes();

View File

@@ -25,7 +25,7 @@
if (isset( $_POST['form']['NW_TITLE'] )) {
$action = (isset( $_POST['form']['ACTION'] )) ? trim( $_POST['form']['ACTION'] ) : 'test';
$name = trim( $_POST['form']['NW_TITLE'] );
$inst = new Installer();
$inst = new PmInstaller();
$isset = $inst->isset_site( $name );