From 6d88fa3f2991ceca1fd73759c3606b4f604dd1d9 Mon Sep 17 00:00:00 2001 From: pricey1981 Date: Fri, 30 Dec 2016 16:02:44 +0000 Subject: [PATCH] Update pm_shortcodes.php missing . from line 588 where $extra is being checked. Had the effect of presenting an incorrect link in the outbox. --- e107_plugins/pm/pm_shortcodes.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e107_plugins/pm/pm_shortcodes.php b/e107_plugins/pm/pm_shortcodes.php index 051241e56..dc0f72283 100644 --- a/e107_plugins/pm/pm_shortcodes.php +++ b/e107_plugins/pm/pm_shortcodes.php @@ -585,7 +585,7 @@ if(!class_exists('plugin_pm_pm_shortcodes')) } - $action = $extra == 'outbox' ? 'delete-out' : 'delete-in'; + $action = $extra == '.outbox' ? 'delete-out' : 'delete-in'; return "".PM_DELETE_ICON.""; }