Zeile 6 | Zeile 6 |
---|
* Website: http://www.mybboard.net * License: http://www.mybboard.net/about/license *
|
* Website: http://www.mybboard.net * License: http://www.mybboard.net/about/license *
|
* $Id: reputation.php 4081 2008-08-08 01:47:02Z Tikitiki $
| * $Id: reputation.php 4304 2009-01-02 01:11:56Z chris $
|
*/
define("IN_MYBB", 1);
| */
define("IN_MYBB", 1);
|
Zeile 521 | Zeile 521 |
---|
// Parse smilies in the reputation vote $reputation_parser = array(
|
// Parse smilies in the reputation vote $reputation_parser = array(
|
"allow_html" => "no", "allow_mycode" => "no", "allow_smilies" => "yes", "allow_imgcode" => "no"
| "allow_html" => 0, "allow_mycode" => 0, "allow_smilies" => 1, "allow_imgcode" => 0
|
);
$reputation_vote['comments'] = $parser->parse_message($reputation_vote['comments'], $reputation_parser);
| );
$reputation_vote['comments'] = $parser->parse_message($reputation_vote['comments'], $reputation_parser);
|
Zeile 537 | Zeile 537 |
---|
eval("\$reputation_votes = \"".$templates->get("reputation_no_votes")."\";"); }
|
eval("\$reputation_votes = \"".$templates->get("reputation_no_votes")."\";"); }
|
eval("\$reputation = \"".$templates->get("reputation")."\";");
| |
$plugins->run_hooks("reputation_end");
|
$plugins->run_hooks("reputation_end");
|
| eval("\$reputation = \"".$templates->get("reputation")."\";");
|
output_page($reputation); } ?>
| output_page($reputation); } ?>
|