Pagina 1 van 1
# this line may already exists ; if so, just ignore it ???
Geplaatst: 26 apr 2005, 16:18
door Carina
http://www.carinahermse.nl/phpBB2/index.php
De zin die ik als titel van dit bericht heb geschreven:
# this line may already exists ; if so, just ignore it die staat nu bovenaan mijn testforum. En ik heb gezocht en gezocht maar ik kan hem niet vinden.
Heeft er iemand misschien een idee waar het zou kunnen staan? Ik heb zojuist de topic calendar geinstalleerd.
Hij staat niet in het administratiepanel.
Geplaatst: 26 apr 2005, 16:23
door Paul
functions.php
index.php
index_body.tpl
overall_header.tpl
en van die denk ik

Geplaatst: 26 apr 2005, 16:24
door Bee
Het zit hem in functions.php, je hebt net iets teveel gekopieerd.
Parse error
Geplaatst: 26 apr 2005, 21:28
door Carina
http://www.carinahermse.nl/phpBB2/posti ... =reply&t=1
Parse error: parse error, unexpected T_BOOLEAN_OR in /home/carinahe/public_html/phpBB2/posting.php on line 419
Dit probleem heb ik ook. Ik weet niet wat er hier fout is. Ik heb de regel waar het over gaat regel 419 rood gemaakt.
Nu maar verder klussen

Maar ziet iemand wat er her fout is?
{
message_die(GENERAL_MESSAGE, $lang['No_such_post']);
}
//
// The user is not authed, if they're not logged in then redirect
// them, else show them an error message
//
//-- mod : calendar --------------------------------------------------------------------------------
// here we added
// || (!empty($is_auth_type_cal) && !$is_auth[$is_auth_type_cal])
//-- modify
if ( !$is_auth[$is_auth_type] )
|| (!empty($is_auth_type_cal) && !$is_auth$is_auth_type_cal])
//-- fin mod : calendar ----------------------------------------------------------------------------
{
if ( $userdata['session_logged_in'] )
{
Geplaatst: 26 apr 2005, 21:34
door Bee
Code: Selecteer alles
if ( !$is_auth[$is_auth_type] )
|| (!empty($is_auth_type_cal) && !$is_auth$is_auth_type_cal])
wordt
Code: Selecteer alles
if ( !$is_auth[$is_auth_type] || (!empty($is_auth_type_cal) && !$is_auth$is_auth_type_cal]))