1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-04 13:47:31 +02:00

Fix for plugin sql file builder fail.

This commit is contained in:
Cameron
2018-08-07 09:49:38 -07:00
parent a64da2df86
commit 92e381f794

View File

@@ -3653,7 +3653,7 @@ class pluginBuilder
{
$createData = str_replace("`".MPREFIX, '`', $data[1]);
$createData .= ";";
if(!file_exists($file) && empty($this->createFiles))
if(!file_exists($file)/* && empty($this->createFiles)*/)
{
file_put_contents($file,$createData);
}