die zeile gibt es in meiner vbcms_areas/vbcmsarea_content.php
garnicht meins sieht so aus !
kann mir da einer helfen ??
PHP Code:
| # Warnung: Ändern Sie die Datei nur, wenn Sie wissen was Sie tun! # ||
|| ###################################################################### ||
*========================================================================*/
if(!class_exists('vBCMS_fetch_components'))
{
exit;
}
error_reporting(E_ALL & ~E_NOTICE);
define('THIS_SCRIPT', 'vbcms_content');
if(empty($_GET['do']))
{
$_GET['do'] = 'default';
}
// ====================[ Permission to vBCMS Management ]===================
if($permissions['vbcmspermissions'] & $vbulletin->bf_ugp['vbcmspermissions']['can_make_content'])
{
$perms = true;
}
$vbulletin->input->clean_array_gpc('g', array(
'do' => TYPE_STR
));
$vbulletin->input->clean_array_gpc('p', array(
'do' => TYPE_STR
));
// Include the _GET OR _POST file for a better memory usage (./vbcms_areas/includes/request/vbcmsarea_content/*.php)
$_ALLOWED_REQUEST_ARRAY = array(
'default',
'pdf',
'rss',
'print',
'email',
'management',
'manage_images',
'editsite', // addcontent
'addcontent',
'course',
'activate',
'deletecourse',
'delsite',
'searchcontent',
'results',
// $_POST
'vote',
'dosendtofriend',
'pos'
);
if(in_array($vbulletin->GPC['do'], $_ALLOWED_REQUEST_ARRAY))
{
if($vbulletin->GPC['do'] == 'editsite')
{
$vbulletin->GPC['do'] = 'addcontent';
}
include(DIR . '/vbcms_areas/includes/request/vbcmsarea_content/' . $vbulletin->GPC['do'] . '.php');
}else{
$this->get_error_message('', 'bad_request');
}
/*======================================================================*\
|| ####################################################################
|| # Downloaded: 15:48:43 1.11.2007