1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-01 04:10:38 +02:00

Forum: "Maximum width of uploaded image" setting is now respected. When set to 0 the size is determined by the forum/theme template.

This commit is contained in:
Cameron
2016-03-24 17:44:03 -07:00
parent 6ab9f32f07
commit 36cabf1330
3 changed files with 11 additions and 2 deletions

View File

@@ -11,12 +11,15 @@ if (!defined('e107_INIT')) { exit; }
class plugin_forum_view_shortcodes extends e_shortcode
{
protected $e107;
protected $defaultImgAttachSize = false;
function __construct()
{
parent::__construct();
$this->e107 = e107::getInstance();
$this->forum = new e107forum();
$this->defaultImgAttachSize = e107::pref('forum','maxwidth',false); // don't resize here if set to 0.
}
function sc_top($parm='')
@@ -105,6 +108,12 @@ class plugin_forum_view_shortcodes extends e_shortcode
$txt = '';
$attachArray = e107::unserialize($this->postInfo['post_attachments']);
if(!empty($this->defaultImgAttachSize))
{
$tp->thumbWidth($this->defaultImgAttachSize); // set the attachment size.
}
//print_a($attachArray);
foreach($attachArray as $type=>$vals)