[svn r10064] Fixed unauthorized PHP syntax (requiring global for array element directly where you should require the complete array variable)

skala
Yannick Warnier 18 years ago
parent d7f00fde42
commit 61e82178aa
  1. 2
      main/dropbox/dropbox_functions.inc.php

@ -120,7 +120,7 @@ function handle_multiple_actions()
function delete_category($action, $id)
{
global $dropbox_cnf;
global $_user['user_id'], $is_courseAdmin, $is_courseTutor;
global $_user, $is_courseAdmin, $is_courseTutor;
// an additional check that might not be necessary
if ($action=='deletereceivedcategory')

Loading…
Cancel
Save