BUG 10190 "Sale un comentario de fallado al realizar..." SOLVED

- To upgrade the system with:
    php -f processmaker upgrade
  No complete the upgrade, can't load all system classes
- Fixed, now be load all classes with Bootstrap class
* Available from version ProcessMaker-2.0.46
This commit is contained in:
Victor Saisa Lopez
2012-12-14 16:42:57 -04:00
parent ae4fb31012
commit a73fa693f1
5 changed files with 278 additions and 261 deletions

View File

@@ -23,14 +23,15 @@
*
*/
if (isset ($_POST['form']['USER_ENV'])) {
session_start ();
session_destroy();
session_start();
$_SESSION ['sysLogin'] = $_POST ['form'];
G::header ('location: /sys' . $_POST ['form'] ['USER_ENV'] . '/' . SYS_LANG . '/' . SYS_SKIN .
'/login/sysLoginVerify');
die ();
}
@session_destroy();
session_destroy();
session_start();
session_regenerate_id();