DBView is View
This commit is contained in:
parent
b50aaf87d7
commit
afa712b811
2 changed files with 3 additions and 6 deletions
|
@ -113,7 +113,7 @@ class DBStructure
|
|||
echo "\n";
|
||||
}
|
||||
|
||||
DBView::printStructure($basePath);
|
||||
View::printStructure($basePath);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -596,7 +596,7 @@ class DBStructure
|
|||
}
|
||||
}
|
||||
|
||||
DBView::create($verbose, $action);
|
||||
View::create($verbose, $action);
|
||||
|
||||
if ($action && !$install) {
|
||||
DI::config()->set('system', 'maintenance', 0);
|
||||
|
|
|
@ -23,14 +23,11 @@ namespace Friendica\Database;
|
|||
|
||||
use Exception;
|
||||
use Friendica\Core\Hook;
|
||||
use Friendica\Core\Logger;
|
||||
use Friendica\DI;
|
||||
use Friendica\Util\DateTimeFormat;
|
||||
use phpDocumentor\Reflection\Types\Boolean;
|
||||
|
||||
require_once __DIR__ . '/../../include/dba.php';
|
||||
|
||||
class DBView
|
||||
class View
|
||||
{
|
||||
/**
|
||||
* view definition loaded from config/dbview.config.php
|
Loading…
Reference in a new issue