Remove pending G::LoadClass and G::LoadClassRBAC
This commit is contained in:
davidcallizaya
2017-08-04 08:54:13 -04:00
parent 3be5e942d3
commit 9d42e978a3
25 changed files with 1 additions and 51 deletions

View File

@@ -40,7 +40,6 @@ if (!isset($_GET['APP_UID']) && !isset($_GET['APP_NUMBER']) && !isset($_GET['DEL
}
//Get the APP_UID related to APP_NUMBER
if (!isset($_GET['APP_UID']) && isset($_GET['APP_NUMBER'])) {
G::LoadClass('case');
$oCase = new Cases();
$appUid = $oCase->getApplicationUIDByNumber(htmlspecialchars($_GET['APP_NUMBER']));
if (is_null( $appUid )) {
@@ -51,7 +50,6 @@ if (!isset($_GET['APP_UID']) && isset($_GET['APP_NUMBER'])) {
}
//If we don't have the DEL_INDEX we get the current delIndex. Data reporting tool does not have this information
if (!isset($_GET['DEL_INDEX'])) {
G::LoadClass('case');
$oCase = new Cases();
$delIndex = $oCase->getCurrentDelegation($appUid, $_SESSION['USER_LOGGED']);
if (is_null( $delIndex )) {