Code: Alles auswählen
[phpBB Debug] PHP Notice: in file [ROOT]/status_install.php on line 65: Use of undefined constant STATUS_TABLE - assumed 'STATUS_TABLE'
Code: Alles auswählen
array(STATUS_TABLE, array(
Code: Alles auswählen
[phpBB Debug] PHP Notice: in file [ROOT]/status_install.php on line 65: Use of undefined constant STATUS_TABLE - assumed 'STATUS_TABLE'
Code: Alles auswählen
array(STATUS_TABLE, array(
Wenn da steht, dass die Constante undefiniert ist, wirst du wohl noch die Tabelle in der Datei includes/constants.php hinzufügen müssen.Use of undefined constant
STATUS_TABLE
großgeschrieben ist, wird es so sein. (Siehe Artikel)Code: Alles auswählen
'ENABLE_STATUS' => ($config['enable_status']) ? true : false,
'ENABLE_STATUS_MEMBERLIST' => ($config['enable_status_memberlist']) ? true : false,
Code: Alles auswählen
'ENABLE_STATUS' => (isset($config['enable_status'])) ? true : false,
'ENABLE_STATUS_MEMBERLIST' => (isset($config['enable_status_memberlist'])) ? true : false,
Code: Alles auswählen
<!-- IF STATUS_ENABLE_VIEWTOPIC and ENABLE_STATUS -->
<!-- BEGIN stat -->
<dd>{postrow.stat.STATUS}</dd>
<!-- END stat -->
<!-- ENDIF -->