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: functions_post.php 4052 2008-07-29 15:45:49Z Tikitiki $
| * $Id: functions_post.php 4265 2008-11-08 23:52:49Z Tikitiki $
|
*/
/**
| */
/**
|
Zeile 161 | Zeile 161 |
---|
if(!$post['displaygroup']) { $post['displaygroup'] = $post['usergroup'];
|
if(!$post['displaygroup']) { $post['displaygroup'] = $post['usergroup'];
|
}
| }
|
$usergroup = $groupscache[$post['displaygroup']]; } else
| $usergroup = $groupscache[$post['displaygroup']]; } else
|
Zeile 289 | Zeile 289 |
---|
if($avatar_dimensions[0] && $avatar_dimensions[1]) {
|
if($avatar_dimensions[0] && $avatar_dimensions[1]) {
|
list($max_width, $max_height) = explode("x", $mybb->settings['postmaxavatarsize']);
| list($max_width, $max_height) = explode("x", my_strtolower($mybb->settings['postmaxavatarsize']));
|
if($avatar_dimensions[0] > $max_width || $avatar_dimensions[1] > $max_height) { require_once MYBB_ROOT."inc/functions_image.php";
| if($avatar_dimensions[0] > $max_width || $avatar_dimensions[1] > $max_height) { require_once MYBB_ROOT."inc/functions_image.php";
|
Zeile 699 | Zeile 699 |
---|
{ if($validationcount == 1) {
|
{ if($validationcount == 1) {
|
$lang->postbit_unapproved_attachments = $lang->postbit_unapproved_attachment;
| $postbit_unapproved_attachments = $lang->postbit_unapproved_attachment;
|
} else {
|
} else {
|
$lang->postbit_unapproved_attachments = $lang->sprintf($lang->postbit_unapproved_attachments, $validationcount);
| $postbit_unapproved_attachments = $lang->sprintf($lang->postbit_unapproved_attachments, $validationcount);
|
} eval("\$post['attachmentlist'] .= \"".$templates->get("postbit_attachments_attachment_unapproved")."\";"); }
| } eval("\$post['attachmentlist'] .= \"".$templates->get("postbit_attachments_attachment_unapproved")."\";"); }
|