From fd7103edb7453eea0931d75c4733eac9ea26ddf6 Mon Sep 17 00:00:00 2001 From: Julio Cesar Laura Date: Tue, 16 Oct 2012 17:01:52 -0400 Subject: [PATCH] Change the default skin to classic, after install ProcessMaker --- workflow/engine/controllers/installer.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/workflow/engine/controllers/installer.php b/workflow/engine/controllers/installer.php index 80923dfab..e090418dd 100644 --- a/workflow/engine/controllers/installer.php +++ b/workflow/engine/controllers/installer.php @@ -820,9 +820,9 @@ class Installer extends Controller G::loadClass('system'); $envFile = PATH_CONFIG . 'env.ini'; - //writting for new installtions to use the new skin 'uxmind' with new Front End ExtJs Based - $updatedConf['default_skin'] = 'uxmodern'; - $info->uri = '/sys' . $_REQUEST['workspace'] . '/en/uxmodern/main/login'; + //writting for new installtions to use the classic skin + $updatedConf['default_skin'] = 'classic'; + $info->uri = '/sys' . $_REQUEST['workspace'] . '/en/classic/login/login'; try { G::update_php_ini($envFile, $updatedConf);