
was bedeutet dise anweisung:
was genau soll ich da ersetzen, bzw. durch was soll ich es ersetzen und wo bekomme ich den einzufügenden code her?#-----[ ACTION: ]------------------------------------------
# OPEN: phpBB-directory/includes/page_header.php
[FIND]:
//
// The following assigns all _common_ variables that may be used at any point
// in a template.
//
[BEFORE, ADD]:
//
// chCounter
//
ob_start();
INCLUDE_CODE
$chCounter = ob_get_contents();
ob_end_clean();
[REPLACE IN THE CODE ABOVE "INCLUDE_CODE" WITH THE PHP-INCLUDE-CODE OF THE COUNTER]
[FIND]:
'SITENAME' => $board_config['sitename'],
[AFTER, ADD]:
'COUNTER' => $chCounter,
#