[svn r11180] minor - fix little bugs

skala
Julian Prud'homme 18 years ago
parent 8b6ede90d4
commit 83384dad7e
  1. 6
      main/work/work.php
  2. 4
      whoisonline.php

@ -23,7 +23,7 @@
* @author Patrick Cool <patrick.cool@UGent.be>, Ghent University - ability for course admins to specify wether uploaded documents are visible or invisible by default.
* @author Roan Embrechts, code refactoring and virtual course support
* @author Frederic Vauthier, directories management
* @version $Id: work.php 11152 2007-02-19 23:25:44Z yannoo $
* @version $Id: work.php 11180 2007-02-21 14:24:39Z elixir_julian $
*
* @todo refactor more code into functions, use quickforms, coding standards, ...
*/
@ -473,7 +473,7 @@ if (api_is_allowed_to_edit())
if(!empty($_REQUEST['move']))
{
$folders = get_subdirs_list($base_work_dir,1);
Display::display_normal_message(build_move_to_selector($folders,$cur_dir_path,$_REQUEST['move']));
Display::display_normal_message(build_move_to_selector($folders,$cur_dir_path,$_REQUEST['move']),false);
}
/* ------------------
* Move file command
@ -781,7 +781,7 @@ if ($_POST['submitWork'] && $succeed &&!$id) //last value is to check this is no
if(!$Id) { $Id = $insertId; }
event_upload($Id);
$submit_success_message = $message . "<br />\n";
Display::display_normal_message($submit_success_message);
Display::display_normal_message($submit_success_message,false);
}
//{

@ -1,4 +1,4 @@
<?php // $Id: whoisonline.php 11167 2007-02-20 02:03:42Z yannoo $
<?php // $Id: whoisonline.php 11180 2007-02-21 14:24:39Z elixir_julian $
/*
==============================================================================
Dokeos - elearning and course management software
@ -109,7 +109,7 @@ function display_user_list($user_list, $_plugins)
}
$table_header[] = array(get_lang('UserPicture'),true,'width="50"');
$table_header[] = array(get_lang('FirstName'),true);
$table_header[] = array(get_lang('Lastname'),true);
$table_header[] = array(get_lang('LastName'),true);
if (api_get_setting("show_email_addresses") == "true")
{
$table_header[] = array(get_lang('Email'),true);

Loading…
Cancel
Save