mirror of
https://github.com/e107inc/e107.git
synced 2025-07-30 19:30:25 +02:00
replaced calls to deprecated plugInstalled() with e107::isInstalled()
This commit is contained in:
@@ -163,7 +163,7 @@ class plugin_forum_view_shortcodes extends e_shortcode
|
||||
|
||||
function sc_privmessage()
|
||||
{
|
||||
if(plugInstalled('pm') && ($this->postInfo['post_user'] > 0))
|
||||
if(e107::isInstalled('pm') && ($this->postInfo['post_user'] > 0))
|
||||
{
|
||||
return e107::getParser()->parseTemplate("{SENDPM={$this->postInfo['post_user']}}");
|
||||
}
|
||||
|
Reference in New Issue
Block a user