Fix blog articles rights

This commit is contained in:
Léo Serre 2021-05-24 00:01:11 +02:00
parent 5bf22fe9cc
commit 8397c032ef
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ $config['include_folder']=basename(__DIR__);
$config['abs_root_folder']=str_replace($config['include_folder'],"",__DIR__);
// This is the relative folder to the root of the website from the DocumentRoot (can also be called subfolder)
$config['rel_root_folder']=str_replace($_SERVER['DOCUMENT_ROOT'],"",$config['abs_root_folder']);
$config['web_root_folder']="kabano.test/";
$config['web_root_folder']="https://kabano.test/";
if($config['rel_root_folder']=="") $config['rel_root_folder']="/";
// Here all the absolute paths to specific folders

View File

@ -277,7 +277,7 @@ class BlogArticles
or die ("Could not connect to server\n");
$query = "SELECT content_versions.id AS version_id, * FROM contents INNER JOIN content_locales ON contents.id = content_locales.content_id INNER JOIN content_versions ON content_locales.id = content_versions.locale_id WHERE is_archive=FALSE ";
if ($archive == 1)
if ($archive != 1)
$query .= "AND is_public=TRUE ";
$query .= "AND type='blog' ORDER BY update_date DESC";
$query .= " LIMIT $1 OFFSET $2";