mirror of
https://github.com/avecms/AVE.cms.git
synced 2025-01-22 07:20:07 +00:00
Fixes
This commit is contained in:
parent
a77c0c229f
commit
a4f4c6b5a4
@ -483,6 +483,25 @@
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Задает Sql Mode
|
||||
*
|
||||
* @param string $charset
|
||||
*
|
||||
* @throws AVE_DB_Exception
|
||||
* @return AVE_DB
|
||||
*/
|
||||
public function setSqlMode()
|
||||
{
|
||||
if (!$this->mysqli->query("SET SQL_MODE = ''"))
|
||||
{
|
||||
throw new AVE_DB_Exception(__METHOD__ . ': ' . $this->mysqli->error);
|
||||
}
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Устанавливает имя используемой СУБД.
|
||||
*
|
||||
|
@ -187,11 +187,11 @@
|
||||
|
||||
//-- Debug Class
|
||||
require (BASE_DIR . '/class/class.debug.php');
|
||||
$Debug = new Debug;
|
||||
new Debug;
|
||||
|
||||
//-- Hooks Class
|
||||
require (BASE_DIR . '/class/class.hooks.php');
|
||||
$Hooks = new Hooks;
|
||||
new Hooks;
|
||||
|
||||
//-- Подкючаем необходимые файлы функций
|
||||
require_once (BASE_DIR . '/functions/func.breadcrumbs.php'); // Хлебные крошки
|
||||
@ -249,6 +249,8 @@
|
||||
->setCharset('utf8')
|
||||
//-- Назначаем БД
|
||||
->setDatabaseName($config['dbname']);
|
||||
//-- SQL Mode
|
||||
->setSqlMode();
|
||||
}
|
||||
catch (AVE_DB_Exception $e)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user