============================================================================================================================
Modification Title: Show Rank And Custom Status In Threads v1.1

Author: John Briggs

Description: This modification will allow both Rank titles and Custom Statuses to show in threads.

Copyright:  2010 John Briggs. All rights reserved.

Compatability: XMB 1.9.5 SP1

Install Note: Before adding this modification to your forum, you should back up all files related to this modification.

License Note: This modification is released under the GPL License. A copy is provided with this software package.

Author Note:
You downloaded this modification from XMBGarage.com, the #1 source for XMB related downloads.
Please visit http://www.xmbgarage.com/ for support.
============================================================================================================================
=======
Step 1:
=======
===================
Edit File: viewthread.php
===================
==========
Find Code:
==========

            $showtitle = ($post['customstatus'] != '') ? $post['customstatus'].'<br />' : $rank['title'].'<br />';

================
Replace Code With:
================

            // Show Rank and Custom Status In Threads Mod Begin
            $showtitle = ($rank['title'] != '') ? $rank['title'].'<br />' : $rank['title'].'<br />';
            $customstatus = ($post['customstatus'] != '') ? $post['customstatus'].'<br />' : '';
            // Show Rank and Custom Status In Threads Mod End

==========
Find Code:
==========

            $showtitle = $lang['textunregistered'].'<br />';

===============
Add Code Below:
===============

            // Show Rank and Custom Status In Threads Mod Begin
            $customstatus = '';
            // Show Rank and Custom Status In Threads Mod End

============================================================================================================================
=======
Step 2:
=======
===============================
Go To Administration Panel --> Templates
===============================
========================
Edit Template: viewthread_post
========================

==========
Find Code:
==========

$showtitle

===============
Add Code Below:
===============

$customstatus

============================================================================================================================
Enjoy!