Verfasst: 24.08.2008 16:09
Wie heißt die komplette Fehlermeldung? Wenn du Meldungen hier nur zu hälfte rein stellt kann man dir auch nicht helfen.
phpBB.de - Die deutsche phpBB-Community
https://www.phpbb.de/community/
Code: Alles auswählen
Parse error: syntax error, unexpected ',' in /home/www/web55/html/forum/includes/acp/info/acp_sitemap.php on line 25
Code: Alles auswählen
<?php
/**
* @package module_install
*/
class acp_partners_info
{
function module()
{
return array(
'filename' => 'acp_partners',
'title' => 'ACP_PA_TITLE',
'version' => '0.0.1',
'modes' => array(
'view' => array(
'title' => 'ACP_PA_TITLE',
'auth' => '',
'cat' => array('ACP_BOARD_CONFIGURATION'),
),
),
);
}
}
?>
Code: Alles auswählen
<?php
/**
* @package module_install
*/
class acp_partners_info
{
function module()
{
return array(
'filename' => 'acp_partners',
'title' => 'ACP_PA_TITLE',
'version' => '0.0.1',
'modes' => array(
'main' => array( 'title' => 'FOO', 'auth' => 'acl_a_view_foo', 'cat' => array('ACP_BOARD_CONFIGURATION'), ),
),
),
);
}
}
?>