mirror of
https://github.com/e107inc/e107.git
synced 2025-01-17 20:58:30 +01:00
Merge pull request #1742 from durandalwoz/master
Avatar shortcode for forum templates and encoding fix for date
This commit is contained in:
commit
2ea362a328
@ -197,7 +197,7 @@ class convert
|
||||
break;
|
||||
}
|
||||
|
||||
return strftime($mask, $datestamp);
|
||||
return utf8_encode(strftime($mask, $datestamp));
|
||||
}
|
||||
|
||||
|
||||
|
@ -699,4 +699,8 @@ $gen = new convert;
|
||||
return $frm->breadcrumb($breadarray);
|
||||
}
|
||||
|
||||
function sc_avatar($opts)
|
||||
{
|
||||
return e107::getParser()->toAvatar(e107::user($this->var['forum_lastpost_user']),$opts);
|
||||
}
|
||||
}
|
||||
|
@ -888,5 +888,18 @@ $LASTPOSTUSER = $this->var['lastpost_username'];
|
||||
}
|
||||
|
||||
*/
|
||||
function sc_avatar($opts)
|
||||
{
|
||||
if (isset($this->var['thread_id']))
|
||||
{
|
||||
return e107::getParser()->toAvatar(e107::user($this->var['thread_lastuser']),$opts);
|
||||
}
|
||||
elseif (isset($this->var['forum_id']))
|
||||
{
|
||||
return e107::getParser()->toAvatar(e107::user($this->var['forum_lastpost_user']),$opts);
|
||||
}
|
||||
|
||||
return '';
|
||||
}
|
||||
}
|
||||
?>
|
Loading…
x
Reference in New Issue
Block a user