From a86bdc6b5bab78b4026f44161413f4e482df42e4 Mon Sep 17 00:00:00 2001 From: Thomas Lange Date: Fri, 25 Jun 2021 22:13:59 +0200 Subject: Reorganize namespaces --- core/application.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'core/application.php') diff --git a/core/application.php b/core/application.php index ecb7947..80952fd 100644 --- a/core/application.php +++ b/core/application.php @@ -159,9 +159,9 @@ if(Application::get('CORE.SEND_304') === TRUE AND !defined('ADMINISTRATION')) { #=========================================================================== $execute = '(SELECT time_update FROM %s ORDER BY time_update DESC LIMIT 1) AS %s'; - $pageTable = Page\Repository::getTableName(); - $postTable = Post\Repository::getTableName(); - $userTable = User\Repository::getTableName(); + $pageTable = ORM\Repositories\Page::getTableName(); + $postTable = ORM\Repositories\Post::getTableName(); + $userTable = ORM\Repositories\User::getTableName(); $pageSQL = sprintf($execute, $pageTable, $pageTable); $postSQL = sprintf($execute, $postTable, $postTable); -- cgit v1.2.3