mirror of
https://github.com/torrentpier/torrentpier
synced 2025-08-21 22:03:49 -07:00
r121
Сделаем отделение подписи настраиваемым. Это позволит использовать html теги. git-svn-id: https://torrentpier2.googlecode.com/svn/trunk@121 a8ac35ab-4ca4-ca47-4c2d-a49a94f06293
This commit is contained in:
parent
758c82f155
commit
bfc26e9864
2 changed files with 3 additions and 1 deletions
|
@ -406,6 +406,8 @@ $bb_cfg['ext_link_new_win'] = true; // open external links in new
|
|||
$bb_cfg['topic_moved_days_keep'] = 7; // remove topic moved links after xx days (or FALSE to disable)
|
||||
|
||||
$bb_cfg['allowed_posts_per_page'] = array(15, 30, 50, 100);
|
||||
$bb_cfg['user_signature_start'] = "<br />_________________<br />";
|
||||
$bb_cfg['user_signature_end'] = ""; //Это позволит использовать html теги, которые требуют закрытия. Например <table> или <font color>
|
||||
|
||||
// Posts
|
||||
$bb_cfg['use_posts_cache'] = true; // if you switch from ON to OFF, you need to TRUNCATE `bb_posts_html` table
|
||||
|
|
|
@ -893,7 +893,7 @@ for($i = 0; $i < $total_posts; $i++)
|
|||
//
|
||||
if ($user_sig)
|
||||
{
|
||||
$user_sig = '<br />_________________<br />'. $user_sig;
|
||||
$user_sig = $bb_cfg['user_signature_start'] . $user_sig . $bb_cfg['user_signature_end'];
|
||||
}
|
||||
|
||||
//
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue