tbrehm
2008-12-15 91433cc637909a5c3fc56f49414d78725afc8f7f
Fixed bug in database name prefix.
1 files modified
2 ■■■ changed files
interface/web/sites/database_edit.php 2 ●●● patch | view | raw | blame | history
interface/web/sites/database_edit.php
@@ -231,7 +231,7 @@
        //* Prevent that the database name and charset is changed
        $old_record = $app->tform->getDataRecord($this->id);
        if($old_record["database_name"] != $restriction . $this->dataRecord["database_name"]) {
        if($old_record["database_name"] != $dbname_prefix . $this->dataRecord["database_name"]) {
            $app->tform->errorMessage .= $app->tform->wordbook["database_name_change_txt"].'<br />';
        }
        if($old_record["database_charset"] != $this->dataRecord["database_charset"]) {