[svn r16753] FS#3009 - get information about one user fixed

skala
Julio Montoya 17 years ago
parent a0559cd9ff
commit 5298dc4040
  1. 29
      main/user/userInfo.php

@ -1,4 +1,4 @@
<?php // $Id: userInfo.php 16739 2008-11-13 15:36:40Z pcool $ <?php // $Id: userInfo.php 16753 2008-11-14 22:27:04Z juliomontoya $
/* /*
============================================================================== ==============================================================================
Dokeos - elearning and course management software Dokeos - elearning and course management software
@ -88,7 +88,10 @@ api_display_tool_title(get_lang("Users"));
* $currentCourseID * $currentCourseID
*/ */
$userIdViewed = $uInfo; // Id of the user we want to view coming from the user.php //$userIdViewed = $uInfo; // Id of the user we want to view coming from the user.php
//get information about one user
$userIdViewed = Security::remove_XSS($_REQUEST['uInfo']);
/* /*
----------------------------------------------------------- -----------------------------------------------------------
@ -177,9 +180,13 @@ if ($allowedToEditDef)
} }
elseif (!empty($_REQUEST['submitMainUserInfo'])) elseif (!empty($_REQUEST['submitMainUserInfo']))
{ {
/*
if (isset ($_REQUEST['submitMainUserInfo'])) if (isset ($_REQUEST['submitMainUserInfo']))
{ {
*/
$userIdViewed = strval(intval($_REQUEST['submitMainUserInfo'])); $userIdViewed = strval(intval($_REQUEST['submitMainUserInfo']));
/*
//is teacher //is teacher
$promoteCourseAdmin=$_REQUEST['promoteCourseAdmin']; $promoteCourseAdmin=$_REQUEST['promoteCourseAdmin'];
$userProperties['status'] = 5; $userProperties['status'] = 5;
@ -207,11 +214,27 @@ if ($allowedToEditDef)
$role=$_REQUEST['role']; $role=$_REQUEST['role'];
$userProperties['role'] = $role; $userProperties['role'] = $role;
} }
*/
//get information about one user - task #3009
if(!empty($_POST['promoteCourseAdmin']) && $_POST['promoteCourseAdmin']){
$userProperties['status'] = 1;
}else{
$userProperties['status'] = 5;
}
if(!empty($_POST['promoteTutor']) && $_POST['promoteTutor']){
$userProperties['tutor'] = 1;
}else{
$userProperties['tutor'] = 0;
}
$userProperties['role'] = $_POST['role'];
update_user_course_properties($userIdViewed, $courseCode, $userProperties); update_user_course_properties($userIdViewed, $courseCode, $userProperties);
$displayMode = "viewContentList"; $displayMode = "viewContentList";
}
} }
} }

Loading…
Cancel
Save