1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-11 00:54:49 +02:00

Fix user select and related in pm plugin

This commit is contained in:
SecretR
2014-12-22 20:35:05 +02:00
parent 8590b9b38b
commit 83d16f2c3d
2 changed files with 48 additions and 37 deletions

View File

@@ -47,6 +47,16 @@ $qs = explode('.', e_QUERY);
$action = varset($qs[0],'inbox');
if (!$action) $action = 'inbox';
if($action == 'textarea' || $action == 'input')
{
if($qs[1] == 'pm_to') {
require_once(e_HANDLER.'user_select_class.php');
$us = new user_select;
$us->popup();
exit;
}
}
$pm_proc_id = intval(varset($qs[1],0));
//$pm_prefs = $sysprefs->getArray('pm_prefs');