Fixed not working links from database, introduced in 0.8.10

This commit is contained in:
slawkens
2023-08-07 21:45:56 +02:00
parent a338fd967c
commit 1e874c7027
2 changed files with 23 additions and 1 deletions

View File

@@ -1255,6 +1255,28 @@ function displayErrorBoxWithBackButton($errors, $action = null) {
]);
}
function getDatabasePages($withHidden = false): array
{
global $db, $logged_access;
if (!isset($logged_access)) {
$logged_access = 1;
}
$pages = $db->query('SELECT `name` FROM ' . TABLE_PREFIX . 'pages WHERE ' . ($withHidden ? '' : '`hidden` != 1 AND ') . '`access` <= ' . $db->quote($logged_access));
$ret = [];
if ($pages->rowCount() < 1) {
return $ret;
}
foreach($pages->fetchAll() as $page) {
$ret[] = $page['name'];
}
return $ret;
}
// validator functions
require_once LIBS . 'validator.php';
require_once SYSTEM . 'compat/base.php';