HOR-3829
This commit is contained in:
@@ -39,7 +39,6 @@
|
|||||||
"monolog/monolog": "1.19.0",
|
"monolog/monolog": "1.19.0",
|
||||||
"geshi/geshi": "dev-master",
|
"geshi/geshi": "dev-master",
|
||||||
"libchart/libchart": "1.4.0",
|
"libchart/libchart": "1.4.0",
|
||||||
"indeyets/pake": "1.99.*",
|
|
||||||
"phpmailer/phpmailer": "5.2.*",
|
"phpmailer/phpmailer": "5.2.*",
|
||||||
"pear/archive_tar": "1.4.*",
|
"pear/archive_tar": "1.4.*",
|
||||||
"pear/console_getopt": "1.4.*",
|
"pear/console_getopt": "1.4.*",
|
||||||
@@ -80,6 +79,7 @@
|
|||||||
"gulliver/includes/inc.ajax.php",
|
"gulliver/includes/inc.ajax.php",
|
||||||
"gulliver/includes/smarty_plugins/function.pmos.php",
|
"gulliver/includes/smarty_plugins/function.pmos.php",
|
||||||
"thirdparty/pear/PEAR.php",
|
"thirdparty/pear/PEAR.php",
|
||||||
|
"thirdparty/pake/pakeFunction.php",
|
||||||
"thirdparty/HTMLPurifier/HTMLPurifier.auto.php",
|
"thirdparty/HTMLPurifier/HTMLPurifier.auto.php",
|
||||||
"workflow/engine/classes/class.pmFunctions.php",
|
"workflow/engine/classes/class.pmFunctions.php",
|
||||||
"workflow/engine/src/ProcessMaker/Util/helpers.php"
|
"workflow/engine/src/ProcessMaker/Util/helpers.php"
|
||||||
|
|||||||
523
composer.lock
generated
523
composer.lock
generated
File diff suppressed because it is too large
Load Diff
20
thirdparty/propel/adapter/DBAdapter.php
vendored
20
thirdparty/propel/adapter/DBAdapter.php
vendored
@@ -71,16 +71,16 @@ abstract class DBAdapter {
|
|||||||
* @return DBAdapter An instance of a Propel database adapter.
|
* @return DBAdapter An instance of a Propel database adapter.
|
||||||
* @throws PropelException if the adapter could not be instantiated.
|
* @throws PropelException if the adapter could not be instantiated.
|
||||||
*/
|
*/
|
||||||
public static function factory($driver) {
|
public static function factory($driver)
|
||||||
$adapterClass = isset(self::$adapters[$driver]) ? self::$adapters[$driver] : null;
|
{
|
||||||
if ($adapterClass !== null) {
|
$adapterClass = isset(self::$adapters[$driver]) ? self::$adapters[$driver] : null;
|
||||||
require_once 'propel/adapter/'.$adapterClass.'.php';
|
if ($adapterClass !== null) {
|
||||||
$a = new $adapterClass();
|
$a = new $adapterClass();
|
||||||
return $a;
|
return $a;
|
||||||
} else {
|
} else {
|
||||||
throw new PropelException("Unsupported Propel driver: " . $driver . ": Check your configuration file");
|
throw new PropelException("Unsupported Propel driver: " . $driver . ": Check your configuration file");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This method is used to ignore case.
|
* This method is used to ignore case.
|
||||||
|
|||||||
Reference in New Issue
Block a user