Merged in luisfernandosl/processmaker/HOR-494-3018 (pull request #3856)

HOR-494
This commit is contained in:
Julio Cesar Laura Avendaño
2016-03-18 16:41:33 -04:00
15 changed files with 30 additions and 30 deletions

View File

@@ -67,7 +67,7 @@ class Language extends BaseLanguage
public function findById ($LAN_ID)
{
if (strpos($LAN_ID, '_') !== false) {
$aux = split('_', $LAN_ID);
$aux = explode('_', $LAN_ID);
$LAN_ID = $aux[0];
}
$oCriteria = new Criteria( 'workflow' );

View File

@@ -296,7 +296,7 @@ switch ($request) {
$passwd = $_POST['password'];
$server = $_POST['host'];
$code = $_POST['codeCaptcha'];
$aServer = split(":", $server);
$aServer = explode(':', $server);
$serverName = $aServer[0];
$port = (count($aServer) > 1) ? $aServer[1] : "none";