mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-24 08:53:37 +01:00
14 lines
862 B
Diff
14 lines
862 B
Diff
Index: phpfreechat/phpfreechat/src/containers/mysql.class.php
|
|
===================================================================
|
|
--- phpfreechat/phpfreechat/src/containers/mysql.class.php (Revision 1276)
|
|
+++ phpfreechat/phpfreechat/src/containers/mysql.class.php (Arbeitskopie)
|
|
@@ -131,7 +131,7 @@
|
|
$query = str_replace('%fieldtype_leaf%', $c->container_cfg_mysql_fieldtype_leaf,$query);
|
|
$query = str_replace('%fieldtype_leafvalue%', $c->container_cfg_mysql_fieldtype_leafvalue,$query);
|
|
$query = str_replace('%fieldtype_timestamp%', $c->container_cfg_mysql_fieldtype_timestamp,$query);
|
|
- $result = mysql_query($query, $db);
|
|
+ $result = true; // mysql_query($query, $db); // as table should be created via setup
|
|
if ($result === FALSE)
|
|
{
|
|
$errors[] = _pfc("Mysql container: create table error '%s'",mysql_error($db));
|