1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-05 06:07:32 +02:00
This commit is contained in:
e107steved
2011-01-12 14:12:47 +00:00
parent 0ed0909b03
commit 01d690bdc0
4 changed files with 79 additions and 36 deletions

View File

@@ -107,11 +107,11 @@ class pm_handler_shortcodes
$type = ($this->pmPrefs['dropdown'] == TRUE ? 'list' : 'popup');
if(check_class($this->pmPrefs['multi_class']))
{
$ret = $us->select_form($type, 'textarea.pm_to');
$ret = $us->select_form($type, 'textarea.pm_to', '', $this->pmPrefs['pm_class']);
}
else
{
$ret = $us->select_form($type, 'pm_to');
$ret = $us->select_form($type, 'pm_to', '', $this->pmPrefs['pm_class']);
}
return $ret;
}