Jump to content

HEY @ ALL OF YOU


Guest TheAnimal92

Recommended Posts

Posted

 ************

Step (1)

************


>> Open sources/Topics.php



>> Find:


//--------------------------------------------

// Grab the posts we'll need

//--------------------------------------------


$first = intval($ibforums->input['st']);


>> ADD After:



// ############### HIDE (LOCK) HACK ###################

$DB->query("SELECT author_name FROM ibf_posts WHERE topic_id='".$this->topic['tid']."'");


while($info = $DB->fetch_row())

{

$allposters[] = $info['author_name'];

}

// ############### HIDE (LOCK) HACK ###################

Open the file Topics.php located in your forums /source/ file. Look for the code

//--------------------------------------------

// Grab the posts we'll need

//--------------------------------------------


$first = intval($ibforums->input['st']);

After you find that code, add this code AFTER it

// ############### HIDE (LOCK) HACK ###################

$DB->query("SELECT author_name FROM ibf_posts WHERE topic_id='".$this->topic['tid']."'");


while($info = $DB->fetch_row())

{

$allposters[] = $info['author_name'];

}

// ############### HIDE (LOCK) HACK ###################



Do that for every one that it asks you to do (steps 1-8). Step 9 just tells you to upload the graphic, and 10 tells you how to add the button to your forums skin.

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...