Merged master into dashboards2
This commit is contained in:
@@ -24,8 +24,8 @@ Usage: {$argv[0]} [build-crud] [gen-ini] [-p <plugin name>] [-w <workspace name>
|
||||
Options:
|
||||
build-crud : Task, build Rest Crud API.
|
||||
gen-ini : Task, generates the rest config ini file.
|
||||
-p : Especify a plugin to set as enviroment to perform the tasks.
|
||||
-w : Especify a workspace to set as enviroment to perform the tasks.
|
||||
-p : Specifies a plugin to set as environment to perform the tasks.
|
||||
-w : Specifies a workspace to set as environment to perform the tasks.
|
||||
|
||||
EOT;
|
||||
|
||||
@@ -42,7 +42,7 @@ try {
|
||||
case 'gen-ini':
|
||||
if (isset($argv[2])) {
|
||||
if (! isset($argv[3])) {
|
||||
throw new Exception("Missing option, need especify a valid argument after option '{$argv[2]}'");
|
||||
throw new Exception("Missing option, need specify a valid argument after option '{$argv[2]}'");
|
||||
}
|
||||
|
||||
switch ($argv[2]) {
|
||||
|
||||
@@ -217,7 +217,7 @@ function run_unify_database($args)
|
||||
|
||||
if ($count > 1) {
|
||||
if(!Bootstrap::isLinuxOs()){
|
||||
CLI::error("This is not a Linux enviroment, please especify workspace.\n");
|
||||
CLI::error("This is not a Linux enviroment, please specify workspace.\n");
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -98,7 +98,7 @@ class Upgrade
|
||||
$installedMD5 = "";
|
||||
} else {
|
||||
$time = microtime(1);
|
||||
$installedMD5 = md5_file($installedFile);
|
||||
$installedMD5 = G::encryptFileOld($installedFile);
|
||||
$checksumTime += microtime(1) - $time;
|
||||
}
|
||||
$archiveMD5 = $checksum;
|
||||
|
||||
@@ -260,7 +260,7 @@ class System
|
||||
continue;
|
||||
}
|
||||
if (file_exists( realpath( $filename ) )) {
|
||||
if (strcmp( $checksum, md5_file( realpath( $filename ) ) ) != 0) {
|
||||
if (strcmp( $checksum, G::encryptFileOld( realpath( $filename ) ) ) != 0) {
|
||||
$result['diff'][] = $filename;
|
||||
}
|
||||
} else {
|
||||
@@ -542,7 +542,7 @@ class System
|
||||
$file = PATH_TRUNK . trim( $line[2] );
|
||||
if (is_readable( $file )) {
|
||||
$size = sprintf( "%07d", filesize( $file ) );
|
||||
$checksum = sprintf( "%010u", crc32( file_get_contents( $file ) ) );
|
||||
$checksum = sprintf( "%010u", G::encryptCrc32( file_get_contents( $file ) ) );
|
||||
if (! ($line[0] == $size && $line[1] == $checksum) && substr( $file, - 4 ) != '.xml') {
|
||||
$distinctFiles .= $file . "\n";
|
||||
$distinct ++;
|
||||
|
||||
@@ -61,7 +61,7 @@ class AddonsManager extends BaseAddonsManager
|
||||
if ($download_md5 == null) {
|
||||
return null;
|
||||
}
|
||||
return (strcasecmp(md5_file($filename), $download_md5) == 0);
|
||||
return (strcasecmp(G::encryptFileOld($filename), $download_md5) == 0);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -367,7 +367,7 @@ class Application extends BaseApplication
|
||||
|
||||
$pin = G::generateCode(4, 'ALPHANUMERIC');
|
||||
$this->setAppData(serialize(array('PIN' => $pin)));
|
||||
$this->setAppPin(md5($pin));
|
||||
$this->setAppPin(G::encryptOld($pin));
|
||||
|
||||
$c = new Criteria();
|
||||
$c->clearSelectColumns();
|
||||
|
||||
@@ -848,7 +848,7 @@ class Installer extends Controller
|
||||
|
||||
// Write the paths_installed.php file (contains all the information configured so far)
|
||||
if (! file_exists( FILE_PATHS_INSTALLED )) {
|
||||
$sh = md5( filemtime( PATH_GULLIVER . '/class.g.php' ) );
|
||||
$sh = G::encryptOld( filemtime( PATH_GULLIVER . '/class.g.php' ) );
|
||||
$h = G::encrypt( $db_hostname . $sh . $db_username . $sh . $db_password, $sh );
|
||||
$dbText = "<?php\n";
|
||||
$dbText .= sprintf( " define('PATH_DATA', '%s');\n", $pathShared );
|
||||
@@ -1152,18 +1152,18 @@ class Installer extends Controller
|
||||
$query = sprintf( "USE %s;", $wf );
|
||||
$this->mssqlQuery( $query );
|
||||
|
||||
$query = sprintf( "UPDATE USERS SET USR_USERNAME = '%s', USR_PASSWORD = '%s' WHERE USR_UID = '00000000000000000000000000000001' ", $adminUsername, md5( $adminPassword ) );
|
||||
$query = sprintf( "UPDATE USERS SET USR_USERNAME = '%s', USR_PASSWORD = '%s' WHERE USR_UID = '00000000000000000000000000000001' ", $adminUsername, G::encryptOld( $adminPassword ) );
|
||||
$this->mssqlQuery( $query );
|
||||
|
||||
$query = sprintf( "USE %s;", $wf );
|
||||
$this->mssqlQuery( $query );
|
||||
|
||||
$query = sprintf( "UPDATE RBAC_USERS SET USR_USERNAME = '%s', USR_PASSWORD = '%s' WHERE USR_UID = '00000000000000000000000000000001' ", $adminUsername, md5( $adminPassword ) );
|
||||
$query = sprintf( "UPDATE RBAC_USERS SET USR_USERNAME = '%s', USR_PASSWORD = '%s' WHERE USR_UID = '00000000000000000000000000000001' ", $adminUsername, G::encryptOld( $adminPassword ) );
|
||||
$this->mssqlQuery( $query );
|
||||
|
||||
// Write the paths_installed.php file (contains all the information configured so far)
|
||||
if (! file_exists( FILE_PATHS_INSTALLED )) {
|
||||
$sh = md5( filemtime( PATH_GULLIVER . '/class.g.php' ) );
|
||||
$sh = G::encryptOld( filemtime( PATH_GULLIVER . '/class.g.php' ) );
|
||||
$h = G::encrypt( $db_hostname . $sh . $db_username . $sh . $db_password . '1', $sh );
|
||||
$dbText = "<?php\n";
|
||||
$dbText .= sprintf( " define ('PATH_DATA', '%s' );\n", $pathShared );
|
||||
|
||||
@@ -137,7 +137,7 @@ if ($actionAjax == "showDynaformHistoryGetNomDynaform_JXP") {
|
||||
$dynTitle = $contentObjeto->getConValue();
|
||||
}
|
||||
|
||||
$md5Hash = md5( $idDin . $dynDate );
|
||||
$md5Hash = G::encryptOld( $idDin . $dynDate );
|
||||
|
||||
//assign task
|
||||
$result = new stdClass();
|
||||
|
||||
@@ -138,7 +138,7 @@ if (! isset( $_GET['ex'] )) {
|
||||
// DEPRECATED this JS section is marked for removal
|
||||
function setSelect()
|
||||
{
|
||||
var ex=<?php echo $_GET['ex']?>;
|
||||
var ex=<?php echo $filter->xssFilterHard($_GET['ex'])?>;
|
||||
try {
|
||||
for(i=1; i<50; i++) {
|
||||
if (i == ex) {
|
||||
|
||||
@@ -140,7 +140,7 @@ G::RenderPage( 'publish', 'blank' );
|
||||
//Deprecated Section since the interface are now movig to ExtJS
|
||||
function setSelect()
|
||||
{
|
||||
var ex=<?php echo $_GET['ex']?>;
|
||||
var ex=<?php echo $filter->xssFilterHard($_GET['ex'])?>;
|
||||
try {
|
||||
for (i=1; i<50; i++) {
|
||||
if (i == ex) {
|
||||
|
||||
@@ -84,7 +84,7 @@ if (! isset( $_GET['ex'] )) {
|
||||
//Deprecated Section since the interface are now movig to ExtJS
|
||||
function setSelect()
|
||||
{
|
||||
var ex=<?php echo $_GET['ex']?>;
|
||||
var ex=<?php echo $filter->xssFilterHard($_GET['ex'])?>;
|
||||
try{
|
||||
for (i=1; i<50; i++) {
|
||||
if (i == ex) {
|
||||
|
||||
@@ -104,7 +104,7 @@ if (! isset( $_GET['ex'] )) {
|
||||
/*------------------------------ To Revise Routines ---------------------------*/
|
||||
function setSelect()
|
||||
{
|
||||
var ex=<?php echo $_GET['ex']?>;
|
||||
var ex=<?php echo $filter->xssFilterHard($_GET['ex'])?>;
|
||||
try{
|
||||
for(i=1; i<50; i++)
|
||||
{
|
||||
|
||||
@@ -170,12 +170,12 @@ G::RenderPage( "publish", "raw" );
|
||||
<script>
|
||||
var toolbar = document.getElementById('fields_Toolbar')
|
||||
var fieldsList = document.getElementById('dynaformEditor[0]')
|
||||
var tableHeight=<?php echo $config['FieldsList']['height'] ?>;
|
||||
var tableWidth=<?php echo $config['FieldsList']['width'] ?>;
|
||||
var toolbarTop=<?php echo $config['Toolbar']['top'] ?>;
|
||||
var toolbarLeft=<?php echo $config['Toolbar']['left'] ?>;
|
||||
var fieldsListTop=<?php echo $config['FieldsList']['top'] ?>//(toolbarTop+toolbar.clientHeight+44+8 );
|
||||
var fieldsListLeft=<?php echo $config['FieldsList']['left'] ?>;
|
||||
var tableHeight=<?php echo $filter->xssFilterHard($config['FieldsList']['height']) ?>;
|
||||
var tableWidth=<?php echo $filter->xssFilterHard($config['FieldsList']['width']) ?>;
|
||||
var toolbarTop=<?php echo $filter->xssFilterHard($config['Toolbar']['top']) ?>;
|
||||
var toolbarLeft=<?php echo $filter->xssFilterHard($config['Toolbar']['left']) ?>;
|
||||
var fieldsListTop=<?php echo $filter->xssFilterHard($config['FieldsList']['top']) ?>//(toolbarTop+toolbar.clientHeight+44+8 );
|
||||
var fieldsListLeft=<?php echo $filter->xssFilterHard($config['FieldsList']['left']) ?>;
|
||||
mainPanel.elements.headerBar.style.backgroundColor='#CBDAEF';
|
||||
mainPanel.elements.headerBar.style.borderBottom='1px solid #808080';
|
||||
mainPanel.elements.headerBar.appendChild(toolbar);
|
||||
|
||||
@@ -269,7 +269,7 @@ try {
|
||||
}
|
||||
|
||||
///////
|
||||
$boundary = "---------------------" . substr(md5(rand(0, 32000)), 0, 10);
|
||||
$boundary = "---------------------" . substr(G::encryptOld(rand(0, 32000)), 0, 10);
|
||||
$data = null;
|
||||
|
||||
$data = $data . "--$boundary\n";
|
||||
|
||||
@@ -2,25 +2,25 @@
|
||||
G::LoadSystem('inputfilter');
|
||||
$filter = new InputFilter();
|
||||
if(isset($_GET['srv'])) {
|
||||
$_GET['srv'] = $filter->xssFilterHard($_GET['srv']);
|
||||
$srv = $filter->xssFilterHard($_GET['srv']);
|
||||
}
|
||||
if(isset($_GET['usr'])) {
|
||||
$_GET['usr'] = $filter->xssFilterHard($_GET['usr']);
|
||||
$usr = $filter->xssFilterHard($_GET['usr']);
|
||||
}
|
||||
if(isset($_GET['pass'])) {
|
||||
$_GET['pass'] = $filter->xssFilterHard($_GET['pass']);
|
||||
$pass = $filter->xssFilterHard($_GET['pass']);
|
||||
}
|
||||
if(isset($_GET['gen'])) {
|
||||
$_GET['gen'] = $filter->xssFilterHard($_GET['gen']);
|
||||
$gen = $filter->xssFilterHard($_GET['gen']);
|
||||
}
|
||||
?>
|
||||
<form action="r">
|
||||
Server: <input type="text" name="srv"
|
||||
value="<?php echo isset($_GET['srv'])?$_GET['srv']:'';?>"> User: <input
|
||||
value="<?php echo isset($srv)? $srv:'';?>"> User: <input
|
||||
type="text" name="usr"
|
||||
value="<?php echo isset($_GET['usr'])?$_GET['usr']:'';?>" /> Passwd: <input
|
||||
value="<?php echo isset($usr)? $usr:'';?>" /> Passwd: <input
|
||||
type="text" name="pass"
|
||||
value="<?php echo isset($_GET['pass'])?$_GET['pass']:'';?>" /> <input
|
||||
value="<?php echo isset($pass)? $pass:'';?>" /> <input
|
||||
type="submit" value="Gen" name="gen" /> <input type="submit"
|
||||
value="Regenerate paths_installed" name="reg" /><br />
|
||||
</form>
|
||||
@@ -28,14 +28,18 @@ if(isset($_GET['gen'])) {
|
||||
|
||||
if (isset( $_GET['gen'] )) {
|
||||
$sh = G::encryptOld( filemtime( PATH_GULLIVER . "/class.g.php" ) );
|
||||
$sh = $filter->xssFilterHard($sh);
|
||||
$h = G::encrypt( $_GET['srv'] . $sh . $_GET['usr'] . $sh . $_GET['pass'] . $sh . (1), $sh );
|
||||
$h = $filter->xssFilterHard($h);
|
||||
echo "HASH_INSTALLATION<br/>";
|
||||
echo "<textarea cols=120>$h</textarea><br/>";
|
||||
echo "SYSTEM_HASH<br/>";
|
||||
echo "<textarea cols=120>$sh</textarea>";
|
||||
} elseif (isset( $_GET['reg'] )) {
|
||||
$sh = G::encryptOld( filemtime( PATH_GULLIVER . "/class.g.php" ) );
|
||||
$sh = $filter->xssFilterHard($sh);
|
||||
$h = G::encrypt( $_GET['srv'] . $sh . $_GET['usr'] . $sh . $_GET['pass'] . $sh . (1), $sh );
|
||||
$h = $filter->xssFilterHard($h);
|
||||
echo "HASH_INSTALLATION<br/>";
|
||||
echo "<textarea cols=120>$h</textarea><br/>";
|
||||
echo "SYSTEM_HASH<br/>";
|
||||
|
||||
@@ -302,7 +302,7 @@ switch ($request) {
|
||||
list($sucess, $msgErr) = testConnection(DB_ADAPTER, $serverName, $user, $passwd, $port);
|
||||
|
||||
if ($sucess) {
|
||||
$sh = md5( filemtime( PATH_GULLIVER . "/class.g.php" ) );
|
||||
$sh = G::encryptOld( filemtime( PATH_GULLIVER . "/class.g.php" ) );
|
||||
$h = G::encrypt( $_POST['host'] . $sh . $_POST['user'] . $sh . $_POST['password'] . $sh . (1), $sh );
|
||||
$insertStatements = "define ( 'HASH_INSTALLATION','{$h}' ); \ndefine ( 'SYSTEM_HASH', '{$sh}' ); \n";
|
||||
$lines = array ();
|
||||
|
||||
@@ -39,7 +39,8 @@ switch ($RBAC->userCanAccess('PM_SETUP_ADVANCE'))
|
||||
}*/
|
||||
|
||||
G::LoadClass( "plugin" );
|
||||
|
||||
G::LoadSystem('inputfilter');
|
||||
$filter = new InputFilter();
|
||||
$pluginName = $_REQUEST["pluginUid"];
|
||||
|
||||
if (file_exists( PATH_PLUGINS . $pluginName . ".php" )) {
|
||||
@@ -50,5 +51,5 @@ if (file_exists( PATH_PLUGINS . $pluginName . ".php" )) {
|
||||
$pluginRegistry->unSerializeInstance( file_get_contents( PATH_DATA_SITE . "plugin.singleton" ) );
|
||||
}
|
||||
G::auditLog("RemovePlugin","Plugin Name: ".$pluginName);
|
||||
echo $pluginName . " " . nl2br( G::LoadTranslation( "ID_MSG_REMOVE_PLUGIN_SUCCESS" ) );
|
||||
echo $pluginName . " " . nl2br( $filter->xssFilterHard(G::LoadTranslation( "ID_MSG_REMOVE_PLUGIN_SUCCESS" )) );
|
||||
|
||||
|
||||
@@ -30,7 +30,7 @@
|
||||
<label class="textBlue"><a href="../../uxs/home">{$switch_interface_label}</a> | </label>
|
||||
{/if}
|
||||
<a href="{$linklogout}" class="tableOption">{$logout}</a> <br/>
|
||||
<label class="textBlack"><b>{$rolename}</b> {$workspace_label} <b><u>{$workspace}</u></b> <br/>
|
||||
<label class="textBlack"><b>{$rolename}</b> {$workspace_label} <b><u>{$workspace}</u></b><br />
|
||||
{$udate}</label>
|
||||
{else}
|
||||
{if $tracker eq 1}
|
||||
@@ -110,4 +110,4 @@
|
||||
</div>
|
||||
</body>
|
||||
{/if}
|
||||
</html>
|
||||
</html>
|
||||
|
||||
@@ -47,6 +47,10 @@ class DynaForm extends Api
|
||||
$dynaForm->setArrayFieldNameForException(array("processUid" => "prj_uid"));
|
||||
|
||||
$arrayData = $dynaForm->executeCreate($prj_uid, $request_data);
|
||||
if (!array_key_exists('dyn_content', $request_data)) {
|
||||
$request_data['dyn_content']="{}";
|
||||
}
|
||||
$arrayData = $dynaForm->update($arrayData['dyn_uid'], $request_data);
|
||||
|
||||
$response = $arrayData;
|
||||
|
||||
|
||||
@@ -750,8 +750,7 @@ Ext.onReady( function() {
|
||||
xtype : 'textfield' ,
|
||||
width : 200 ,
|
||||
fieldLabel : _('ID_NAME') ,
|
||||
name : 'name' ,
|
||||
allowBlank : false
|
||||
name : 'name'
|
||||
},
|
||||
{
|
||||
id : 'dynaformCalendarDescription' ,
|
||||
@@ -935,6 +934,9 @@ Ext.onReady( function() {
|
||||
Ext.getCmp('dynaformCalendarName').setValue(Ext.getCmp('dynaformCalendarName').getValue().trim());
|
||||
var canlendarName = Ext.getCmp('dynaformCalendarName').getValue().trim();
|
||||
if(canlendarName === ""){
|
||||
Ext.apply(Ext.getCmp('dynaformCalendarName'), {allowBlank: false}, {});
|
||||
Ext.Msg.alert(_('ID_WARNING'), _("ID_FIELD_REQUIRED", _("ID_NAME")));
|
||||
Ext.getCmp('dynaformCalendarName').setValue("");
|
||||
return;
|
||||
}
|
||||
Ext.Ajax.request({
|
||||
|
||||
@@ -22,11 +22,32 @@ try {
|
||||
throw (new Exception("function ws_open() is not defined. File wsClient.php is missing"));
|
||||
}
|
||||
|
||||
/*
|
||||
* PMDynaform
|
||||
* DYN_VERSION is 1: classic Dynaform,
|
||||
* DYN_VERSION is 2: responsive form, Pmdynaform.
|
||||
*/
|
||||
$a = new Criteria("workflow");
|
||||
$a->addSelectColumn(DynaformPeer::DYN_VERSION);
|
||||
$a->add(DynaformPeer::DYN_UID, "{dynaformUid}", Criteria::EQUAL);
|
||||
$a = ProcessPeer::doSelectRS($a);
|
||||
$a->setFetchmode(ResultSet::FETCHMODE_ASSOC);
|
||||
$a->next();
|
||||
$row = $a->getRow();
|
||||
$swpmdynaform = isset($row) && $row["DYN_VERSION"] == 2;
|
||||
if ($swpmdynaform) {
|
||||
$pmdynaform = $_POST["form"];
|
||||
}
|
||||
|
||||
$oForm = new Form("{processUid}" . "/" . "{dynaformUid}", PATH_DYNAFORM);
|
||||
$oForm->validatePost();
|
||||
|
||||
ws_open();
|
||||
$result = ws_newCase("{processUid}", "{taskUid}", convertFormToWSObjects($_POST["form"]));
|
||||
if ($swpmdynaform) {
|
||||
$result = ws_newCase("{processUid}", "{taskUid}", convertFormToWSObjects($pmdynaform));
|
||||
} else {
|
||||
$result = ws_newCase("{processUid}", "{taskUid}", convertFormToWSObjects($_POST["form"]));
|
||||
}
|
||||
|
||||
if ($result->status_code == 0) {
|
||||
$caseId = $result->caseId;
|
||||
|
||||
@@ -20,7 +20,7 @@ if(isset($_GET['gui'])) {
|
||||
}
|
||||
</style>
|
||||
<body onresize="autoResizeScreen()" onload="autoResizeScreen()">
|
||||
<iframe name="frameMain" id="frameMain" src ="../reportTables/mainInit?PRO_UID=<?php echo $gui?>" width="99%" height="200" frameborder="0">
|
||||
<iframe name="frameMain" id="frameMain" src ="../reportTables/mainInit?PRO_UID=<?php echo $filter->xssFilterHard($gui)?>" width="99%" height="200" frameborder="0">
|
||||
<p>Your browser does not support iframes.</p>
|
||||
</iframe>
|
||||
</body>
|
||||
|
||||
@@ -33,7 +33,7 @@
|
||||
border-right: #fff 1px solid;
|
||||
padding-right: 10px;
|
||||
border-top: #fff 1px solid;
|
||||
padding-top: 10px;
|
||||
padding-top: 5px;
|
||||
border-left: #fff 1px solid;
|
||||
padding-left: 10px;
|
||||
border-bottom: #fff 1px solid;
|
||||
@@ -47,6 +47,16 @@
|
||||
span.cLow {
|
||||
color: #002c72;
|
||||
}
|
||||
span.cLow-min {
|
||||
color: #002c72;
|
||||
font-size: 13px;
|
||||
line-height: 1.3em;
|
||||
}
|
||||
span.cLow-autor {
|
||||
color: #002c72;
|
||||
font-size: 15px;
|
||||
line-height: 1.3em;
|
||||
}
|
||||
|
||||
</style>
|
||||
<!--[if IE]>
|
||||
@@ -68,23 +78,23 @@
|
||||
<a target="_blank" href="http://www.processmaker.com"><img src="/images/get_started.png" border="0" width="163" height="438"></a>
|
||||
</td>
|
||||
<td class="cell2" valign="top">
|
||||
<p><span class="cLow">Welcome to ProcessMaker!</span></p>
|
||||
<p><span class="cLow">To get started, log in using the following credentials. You can change them later:</span></p>
|
||||
<p><b><span class="cLow">Welcome to ProcessMaker 3.</span></b></p>
|
||||
<p style="text-align: justify;"><span class="cLow-min">This new version features a new process designer based upon the Business Process Management Notation 2 standard. It offers a new form designer with flexible layouts for desktops, tablets and cellphones and a new REST API to remotely access ProcessMaker.</span></p>
|
||||
<p style="text-align: justify;"><span class="cLow-min">To get started, log in using the following credentials. You can change them later:</span></p>
|
||||
<span class="cNeg">Username:</span><span class="cLow"> {name}</span><br>
|
||||
<span class="cNeg">Password:</span><span class="cLow"> {pass}</span>
|
||||
<p><span class="cLow">We suggest you follow our 7 easy videos to automate your workflow. You can see a demo of each step at <a target="_blank" href="http://www.processmaker.com/demos/">http://www.processmaker.com/demos/</a> </span></p>
|
||||
<span class="cNeg">Password:</span><span class="cLow"> {pass}</span><br><br>
|
||||
<p style="text-align: justify;"><span class="cLow-min">We suggest you follow our 7 easy videos to automate your workflow. You can see a demo of each step at <a target="_blank" href="http://www.processmaker.com/tutorials">http://www.processmaker.com/tutorials/</a></span></p>
|
||||
|
||||
<span class="cLow">Other Resources:</span><br/><br/>
|
||||
<b><span class="cLow">Other Resources:</span></b><br/><br/>
|
||||
|
||||
<span class="cLow"><a target="_blank" href="http://wiki.processmaker.com">PM Wiki </a>- Manuals</span><br/>
|
||||
|
||||
<span class="cLow"><a target="_blank" href="http://forum.processmaker.com">PM Forum </a>- Ask Questions</span><br/>
|
||||
<span class="cLow"><a target="_blank" href="http://forum.processmaker.com">PM Forum </a>- Ask Questions</span><br/><br/>
|
||||
|
||||
<p><span class="cLow">We hope you enjoy using ProcessMaker. For more information about our enterprise support and consulting services <a target="_blank" href="http://www.processmaker.com/contact-us">contact us.</a>
|
||||
</span></p>
|
||||
<p><span class="cLow">The ProcessMaker Team</span></p>
|
||||
<p style="text-align: justify;"><span class="cLow-min">We hope you enjoy using ProcessMaker. For more information about our enterprise support and consulting services <a target="_blank" href="http://www.processmaker.com/contact-us">contact us.</a></span></p>
|
||||
<p><b><span class="cLow-autor">The ProcessMaker Team</span></b></p>
|
||||
|
||||
<input type="checkbox" name="getStarted" id="getStarted" onclick="saveConfig();"><span class="cLow">Don't show me again</span>
|
||||
<input type="checkbox" name="getStarted" id="getStarted" onclick="saveConfig();"><span class="cLow"> Don't show me again</span>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
@@ -342,7 +342,7 @@
|
||||
}
|
||||
else {
|
||||
if(SYS_TARGET=="dbInfo"){ //Show dbInfo when no SYS_SYS
|
||||
$pathFile = PATH_METHODS . "login/dbInfo.php";
|
||||
$pathFile = PATH_METHODS . 'login/dbInfo.php';
|
||||
$pathFile = $filter->validateInput($pathFile,'path');
|
||||
require_once($pathFile);
|
||||
}
|
||||
@@ -361,7 +361,7 @@
|
||||
}
|
||||
}
|
||||
else { // classic sysLogin interface
|
||||
$pathFile = PATH_METHODS . "login/sysLogin.php";
|
||||
$pathFile = PATH_METHODS . 'login/sysLogin.php';
|
||||
$pathFile = $filter->validateInput($pathFile,'path');
|
||||
require_once($pathFile) ;
|
||||
die();
|
||||
|
||||
Reference in New Issue
Block a user