fix tables names

This commit is contained in:
Jean-Christian Paul Denis 2022-12-03 16:45:34 +01:00
parent 6f01127ef2
commit 2a81d9d0e9
Signed by: JcDenis
GPG Key ID: 1B5B8C5B90B6C951

View File

@ -60,8 +60,8 @@ class publicBehaviorPostExpired
# Get expired dates and post_id # Get expired dates and post_id
$posts = dcCore::app()->con->select( $posts = dcCore::app()->con->select(
'SELECT P.post_id, P.post_tz, META.meta_id ' . 'SELECT P.post_id, P.post_tz, META.meta_id ' .
'FROM ' . dcCore::app()->prefix . 'post P ' . 'FROM ' . dcCore::app()->prefix . dcBlog::POST_TABLE_NAME . ' P ' .
'INNER JOIN ' . dcCore::app()->prefix . 'meta META ' . 'INNER JOIN ' . dcCore::app()->prefix . dcMeta::META_TABLE_NAME . ' META ' .
'ON META.post_id = P.post_id ' . 'ON META.post_id = P.post_id ' .
"WHERE blog_id = '" . dcCore::app()->con->escape(dcCore::app()->blog->id) . "' " . "WHERE blog_id = '" . dcCore::app()->con->escape(dcCore::app()->blog->id) . "' " .
// Removed for quick compatibility with some plugins // Removed for quick compatibility with some plugins
@ -78,7 +78,7 @@ class publicBehaviorPostExpired
$now = dt::toUTC(time()); $now = dt::toUTC(time());
# Prepared post cursor # Prepared post cursor
$post_cur = dcCore::app()->con->openCursor(dcCore::app()->prefix . 'post'); $post_cur = dcCore::app()->con->openCursor(dcCore::app()->prefix . dcBlog::POST_TABLE_NAME);
# Loop through marked posts # Loop through marked posts
$updated = false; $updated = false;