Added mechanism to pass jabber credentials to AJAX client
authorHarvie <tomas@mudrunka.cz>
Fri, 7 Jan 2011 11:56:09 +0000 (12:56 +0100)
committerHarvie <tomas@mudrunka.cz>
Fri, 7 Jan 2011 11:56:09 +0000 (12:56 +0100)
wwwroot/inc/eventz/login.inc

index 154cdef2d451029112f8ffc110a50bb72ed79ec3..1fb4a041cf21776cf7d3b933046f0c996f735946 100644 (file)
@@ -121,6 +121,8 @@ where node_access.user_id='$user_id' and node_bookmark='yes' order by node_name"
 
         $_SESSION['user_id']=$user_id;
         $_SESSION['user_name']=addslashes($user_name);
+       setcookie('jabber_login', strtolower($user_name), time()+60*60*24*10, '/'); //10days on whole domain - should have persistent username in future...
+       setcookie('jabber_password', hash('md5', 'jabber:'.$_POST['password']), time()+60*60*24*10, '/'); //10days on whole domain
         if (!empty($cube_vector)) $_SESSION['cube_vector']=$cube_vector;
         if (empty($_SESSION['template_set'])) $_SESSION['template_set']=$set->getString('template_set');
         if (is_numeric($_POST['screen_width'])) $_SESSION['browser']['screen_width']=$_POST['screen_width'];
This page took 0.109234 seconds and 4 git commands to generate.