mirror of
https://github.com/e107inc/e107.git
synced 2025-05-05 19:55:21 +02:00
Update pm_shortcodes.php
missing . from line 588 where $extra is being checked. Had the effect of presenting an incorrect link in the outbox.
This commit is contained in:
parent
274b822bf3
commit
6d88fa3f29
@ -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 "<a class='btn btn-default' title='".LAN_DELETE."' href='".$this->url('action/'.$action, 'id='.$this->var['pm_id'])."'>".PM_DELETE_ICON."</a>";
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user