Jump to content

  •  

  • Tutorial info Visit support topic

    • Added on: Dec 19 2008 10:38 AM
    • Views: 842
     


    * * * * *
    0 Ratings

    Color the uploader's names on IP.Downloads index according to their groups

    Color the uploader's names on IP.Downloads index according to their groups

    Posted by Adriano Faria on Dec 19 2008 10:38 AM
    Open sources/components_public/downloads/display.php and find:

    $cinfo['cfileinfo']['author']	  = $cinfo['cfileinfo']['mid'] > 0 ? $this->ipsclass->make_profile_link( $cinfo['cfileinfo']['mname'], $cinfo['cfileinfo']['mid'] ) : $this->ipsclass->lang['idm_guestlang'];
    Change to:

    $mgroup = $this->ipsclass->DB->build_and_exec_query( array( 'select' => 'mgroup', 'from' => 'members', 'where' => 'id='.$cinfo['cfileinfo']['mid'] ) );
    							  $cinfo['cfileinfo']['author']	  = $cinfo['cfileinfo']['mid'] > 0 ? $this->ipsclass->make_profile_link( $this->ipsclass->make_name_formatted( $cinfo['cfileinfo']['mname'], $mgroup['mgroup'] ), $cinfo['cfileinfo']['mid'] ) : $this->ipsclass->lang['idm_guestlang'];

    Posted Image


    Powered by Tutorials 1.4.1 © 2012, by Michael McCune