News:

Help keep this project going by donating or buying adseller pro

Main Menu
Coinbase

Bug in installation.xml

Started by stormvibrant, November 16, 2008, 05:40:33 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

stormvibrant

------------------------------------------------------------------------------------------------

<file name="$sourcedir/ManagePermissions.php">
<operation>
<search position="replace"><![CDATA[         'pm' => array(]]>
</search>
<add><![CDATA[         'ad_manage' => array(
            'ad_manageperm' => false,
         ),
         'pm' => array(]]>
</add>
</operation>
</file>


------------------------------------------------------------------------------------------------

Now you see how is tells you to find the line of code: 'pm' => array(]]>. Well there's no such thing in ManagePermissions.php. It's actually: 'pm' => array(

When you find that you need to replace it with: 'ad_manage' => array(
            'ad_manageperm' => false,
         ),
         'pm' => array(

The "]]>" at the end of array never existed.

Hope this helps.

ccbtimewiz

The ]]> is not search code, it's XML parse code.