Author Topic: Compatibility problem  (Read 2030 times)

Offline g3oniTz

Compatibility problem
« on: March 01, 2009, 02:15:10 pm »
hello, I have a problem with the installation of the mod, I think it was a mod of Awards that I installed previously, specifically my problem is in the Display.template.php, must be there something like this:

Quote
         // Show how many posts they have made.
         echo '
                        ', $txt[26], ': ', $message['member']['posts'], '<br />
                        <br />';

but I have this:
Quote
         // Show how many posts they have made.
         echo '
                        ', $txt[26], ': ', $message['member']['posts'], '';
         
         if (!empty($message['member']['options']['profile_postawards']))   
         {
            $postawards = parse_bbc($message['member']['options']['profile_postawards']);
            echo '<br />Awards: ' . $postawards . '';
         }            
         
         echo '            <br />
                        <br />';


how I must modify the file?
any help will be appreciated