Zeile 3 | Zeile 3 |
---|
* MyBB 1.2 * Copyright � 2006 MyBB Group, All Rights Reserved *
|
* MyBB 1.2 * Copyright � 2006 MyBB Group, All Rights Reserved *
|
* Website: http://www.mybboard.com * License: http://www.mybboard.com/eula.html
| * Website: http://www.mybboard.net * License: http://www.mybboard.net/eula.html
|
*
|
*
|
* $Id: functions_post.php 2165 2006-08-30 06:24:52Z chris $
| * $Id: functions_post.php 2942 2007-03-10 21:36:18Z dennis $
|
*/
/**
| */
/**
|
Zeile 79 | Zeile 79 |
---|
$parser_options['allow_mycode'] = $forum['allowmycode']; $parser_options['allow_smilies'] = $forum['allowsmilies']; $parser_options['allow_imgcode'] = $forum['allowimgcode'];
|
$parser_options['allow_mycode'] = $forum['allowmycode']; $parser_options['allow_smilies'] = $forum['allowsmilies']; $parser_options['allow_imgcode'] = $forum['allowimgcode'];
|
| if(!$post['username']) { $post['username'] = $lang->guest; }
|
if($post['userusername']) { $parser_options['me_username'] = $post['userusername'];
| if($post['userusername']) { $parser_options['me_username'] = $post['userusername'];
|
Zeile 314 | Zeile 318 |
---|
$post['button_report'] = ''; if(!$post_type) {
|
$post['button_report'] = ''; if(!$post_type) {
|
if($post['edituid'] != "" && $post['edittime'] != "" && $post['editusername'] != "")
| // Figure out if we need to show an "edited by" message // Only show if at least one of "showeditedby" or "showeditedbyadmin" is enabled if($post['edituid'] != "" && $post['edittime'] != "" && $post['editusername'] != "" && $mybb->settings['showeditedby'] != "no" && $mybb->settings['showeditedbyadmin'] != "no")
|
{ $post['editdate'] = my_date($mybb->settings['dateformat'], $post['edittime']); $post['edittime'] = my_date($mybb->settings['timeformat'], $post['edittime']);
| { $post['editdate'] = my_date($mybb->settings['dateformat'], $post['edittime']); $post['edittime'] = my_date($mybb->settings['timeformat'], $post['edittime']);
|
Zeile 430 | Zeile 436 |
---|
if($post['icon'] > 0 && $icon_cache[$post['icon']]) { $icon = $icon_cache[$post['icon']];
|
if($post['icon'] > 0 && $icon_cache[$post['icon']]) { $icon = $icon_cache[$post['icon']];
|
$post['icon'] = "<img src=\"{$icon['path']}\" alt=\"{$icon['name']}\"> ";
| $post['icon'] = "<img src=\"{$icon['path']}\" alt=\"{$icon['name']}\" /> ";
|
} else {
| } else {
|