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

Merge pull request #1853 from yesszus/patch-16

Issue #6 Update pm_shortcodes.php
This commit is contained in:
Cameron 2016-09-17 10:43:41 -07:00 committed by GitHub
commit ab686f694a

View File

@ -284,7 +284,7 @@ if(!class_exists('plugin_pm_pm_shortcodes'))
public function sc_pm_post_button()
{
return "<input class='button btn btn-primary' type='submit' name='postpm' value='".LAN_PM_1."' />";
return "<input class='button btn btn-primary' type='submit' name='postpm' value='".LAN_PLUGIN_PM_NEW."' />";
}
@ -731,7 +731,7 @@ if(!class_exists('plugin_pm_pm_shortcodes'))
$class = (!empty($parm['class'])) ? $parm['class'] : 'btn btn-sm btn-primary btn-block-level';
return "<a class='".$class."' href='".$urlCompose."'>".$tp->toGlyph('fa-edit',' ')."Compose</a>";
return "<a class='".$class."' href='".$urlCompose."'>".$tp->toGlyph('fa-edit',' ')."".LAN_PLUGIN_PM_NEW."</a>";
}