Minor - headers updated

skala
Julio Montoya 15 years ago
parent 4f3d0f4e27
commit bac64a9437
  1. 8
      main/admin/session_course_user.php
  2. 6
      main/admin/session_edit.php
  3. 20
      main/admin/session_list.php
  4. 6
      main/admin/settings.lib.php
  5. 10
      main/admin/system_announcements.php
  6. 1
      main/admin/system_status.php

@ -1,9 +1,7 @@
<?php //$id: $
/* For licensing terms, see /dokeos_license.txt */
/* For licensing terms, see /license.txt */
/**
==============================================================================
* @package dokeos.admin
==============================================================================
* @package chamilo.admin
*/
// name of the language file that needs to be included
@ -13,7 +11,7 @@ $language_file='admin';
$cidReset=true;
// including some necessary dokeos files
require '../inc/global.inc.php';
require_once '../inc/global.inc.php';
// including additonal libraries
require_once api_get_path(LIBRARY_PATH).'sessionmanager.lib.php';

@ -1,11 +1,11 @@
<?php
/* For licensing terms, see /dokeos_license.txt */
/* For licensing terms, see /license.txt */
// name of the language file that needs to be included
$language_file ='admin';
$cidReset=true;
include('../inc/global.inc.php');
require_once (api_get_path(LIBRARY_PATH).'sessionmanager.lib.php');
require_once '../inc/global.inc.php';
require_once api_get_path(LIBRARY_PATH).'sessionmanager.lib.php';
// setting the section (for the tabs)
$this_section=SECTION_PLATFORM_ADMIN;

@ -1,13 +1,15 @@
<?php
/* For licensing terms, see /dokeos_license.txt */
/* For licensing terms, see /license.txt */
$language_file='admin';
$cidReset=true;
include('../inc/global.inc.php');
require_once (api_get_path(LIBRARY_PATH).'formvalidator/FormValidator.class.php');
require_once (api_get_path(LIBRARY_PATH).'sessionmanager.lib.php');
require_once '../inc/global.inc.php';
require_once api_get_path(LIBRARY_PATH).'formvalidator/FormValidator.class.php';
require_once api_get_path(LIBRARY_PATH).'sessionmanager.lib.php';
$this_section = SECTION_PLATFORM_ADMIN;
api_protect_admin_script(true);
$htmlHeadXtra[] = '<script language="javascript">
@ -28,12 +30,12 @@ $htmlHeadXtra[] = '<script language="javascript">
</script>
';
$tbl_session=Database::get_main_table(TABLE_MAIN_SESSION);
$tbl_session_category=Database::get_main_table(TABLE_MAIN_SESSION_CATEGORY);
$tbl_session_rel_course=Database::get_main_table(TABLE_MAIN_SESSION_COURSE);
$tbl_session = Database::get_main_table(TABLE_MAIN_SESSION);
$tbl_session_category = Database::get_main_table(TABLE_MAIN_SESSION_CATEGORY);
$tbl_session_rel_course = Database::get_main_table(TABLE_MAIN_SESSION_COURSE);
$tbl_session_rel_course_rel_user=Database::get_main_table(TABLE_MAIN_SESSION_COURSE_USER);
$tbl_session_rel_user=Database::get_main_table(TABLE_MAIN_SESSION_USER);
$tbl_user = Database::get_main_table(TABLE_MAIN_USER);
$tbl_session_rel_user = Database::get_main_table(TABLE_MAIN_SESSION_USER);
$tbl_user = Database::get_main_table(TABLE_MAIN_USER);
$page=intval($_GET['page']);
$action=$_REQUEST['action'];

@ -1,9 +1,6 @@
<?php
/*
* For licensing terms, see /license.txt
*/
/* For licensing terms, see /license.txt */
/**
==============================================================================
* Library of the settings.php file
*
* @author Julio Montoya <gugli100@gmail.com>
@ -11,7 +8,6 @@
*
* @since Chamilo 1.8.7
* @package chamilo.admin
==============================================================================
*/
/**

@ -1,16 +1,10 @@
<?php // $Id: system_announcements.php 22243 2009-07-20 15:08:31Z ivantcholakov $
/* For licensing terms, see /license.txt */
/**
==============================================================================
* This page allows the administrator to manage the system announcements.
* @package dokeos.admin
==============================================================================
*/
/*
==============================================================================
INIT SECTION
==============================================================================
* @package chamilo.admin
*/
/* INIT SECTION */
// name of the language file that needs to be included
$language_file = array ('admin', 'agenda');

@ -2,6 +2,7 @@
/* For licensing terms, see /license.txt */
/**
* @package chamilo.admin
* @author Julio Montoya <gugli100@gmail.com>
*/
// Language files that should be included

Loading…
Cancel
Save