You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
748 B
25 lines
748 B
|
16 years ago
|
<?php
|
||
|
|
/* See license terms in /dokeos_license.txt */
|
||
|
|
/**
|
||
|
|
==============================================================================
|
||
|
|
* Updates the Dokeos files from version 1.8.6.2 to version 1.8.7
|
||
|
|
* This script operates only in the case of an update, and only to change the
|
||
|
|
* active version number (and other things that might need a change) in the
|
||
|
|
* current configuration file.
|
||
|
|
* @package dokeos.install
|
||
|
|
==============================================================================
|
||
|
|
*/
|
||
|
|
require_once("../inc/lib/main_api.lib.php");
|
||
|
|
require_once("../inc/lib/fileUpload.lib.php");
|
||
|
|
require_once('../inc/lib/database.lib.php');
|
||
|
|
|
||
|
|
if (defined('DOKEOS_INSTALL') || defined('DOKEOS_COURSE_UPDATE'))
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|
||
|
|
else
|
||
|
|
{
|
||
|
|
echo 'You are not allowed here !';
|
||
|
|
}
|
||
|
|
?>
|