1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-24 15:13:04 +02:00
This commit is contained in:
leo
2015-06-25 16:05:23 +02:00
parent 70381959b6
commit 3bc8dbdf83
15 changed files with 17 additions and 17 deletions

View File

@@ -52,7 +52,7 @@ define('LAN_PM_48', "ERROR: Block not added, unknown error");
define('LAN_PM_49', "ERROR: Block already in place for {UNAME}");
define('LAN_PM_50', "Block User");
define('LAN_PM_51', "Unblock User");
define('LAN_PM_52', "Delete");
//define('LAN_PM_52', "Delete"); '' new > LAN_DELETE
define('LAN_PM_53', "Delete Selected");
define('LAN_PM_54', "Quote original");
define('LAN_PM_55', "Send Reply");

View File

@@ -470,7 +470,7 @@ if(!class_exists('pm_shortcodes'))
}
if($extra !== 'inbox' && $extra !== 'outbox') return '';
$action = $extra == 'outbox' ? 'delete-out' : 'delete-in';
return "<a href='".$this->url('action/'.$action, 'id='.$this->var['pm_id'])."'><img src='".e_PLUGIN_ABS."pm/images/mail_delete.png' title='".LAN_PM_52."' alt='".LAN_PM_52."' class='icon S16' /></a>";
return "<a href='".$this->url('action/'.$action, 'id='.$this->var['pm_id'])."'><img src='".e_PLUGIN_ABS."pm/images/mail_delete.png' title='".LAN_DELETE."' alt='".LAN_DELETE."' class='icon S16' /></a>";
}
@@ -597,7 +597,7 @@ if(!class_exists('pm_shortcodes'))
public function sc_pm_blocked_delete()
{
return "<a href='".$this->url('action/delete-blocked', array('id' => $this->pmBlocked['pm_block_from']))."'><img src='".e_PLUGIN_ABS."pm/images/mail_delete.png' title='".LAN_PM_52."' alt='".LAN_PM_52."' class='icon S16' /></a>";
return "<a href='".$this->url('action/delete-blocked', array('id' => $this->pmBlocked['pm_block_from']))."'><img src='".e_PLUGIN_ABS."pm/images/mail_delete.png' title='".LAN_DELETE."' alt='".LAN_DELETE."' class='icon S16' /></a>";
}