Quote:
Originally Posted by jgommel
I'm receiving the following error when I try to access the Project Manager under the Admincp > Project Toosl > Project Manager
Code:
Parse error: syntax error, unexpected T_STRING in /home/----------------------/admincp/project.php on line 2282
|
Can you confirm your code edits? Your error is in the area where you needed to add the "managers" value to the "clean array" function so I assume you have a typo.
The code hack is the first set of FIND and REPLACE posted above in the /admincp/project.php file.
The code on your site should look like this:
PHP Code:
// ########################################################################
if ($_POST['do'] == 'projectupdate')
{
$vbulletin->input->clean_array_gpc('p', array(
'projectid' => TYPE_UINT,
'displayorder' => TYPE_UINT,
'title' => TYPE_STR,
'summary' => TYPE_STR,
'managers' => TYPE_STR,
'description' => TYPE_STR,
'startstatus' => TYPE_ARRAY_UINT,
'permissionbase' => TYPE_UINT,
'options' => TYPE_ARRAY_UINT,
'afterforumids' => TYPE_ARRAY_UINT,
'forumtitle' => TYPE_STR
));
if (empty($vbulletin->GPC['title']))