[svn r11139] Renaming profile.conf.inc.php to profile.conf.php to follow other names in conf directory. Updated in install and update scripts as well as in auth/ directory where it is included

skala
Yannick Warnier 19 years ago
parent 33f1077c30
commit 032c9a26ae
  1. 4
      main/auth/inscription.php
  2. 6
      main/auth/profile.php
  3. 1
      main/inc/conf/profile.conf.dist.php
  4. 4
      main/install/install_files.inc.php
  5. 4
      main/install/update-files-1.6.x-1.8.0.inc.php

@ -1,5 +1,5 @@
<?php
// $Id: inscription.php 11113 2007-02-14 17:43:58Z elixir_inter $
// $Id: inscription.php 11139 2007-02-17 15:43:14Z yannoo $
/*
==============================================================================
Dokeos - elearning and course management software
@ -36,7 +36,7 @@ include ("../inc/global.inc.php");
require_once (api_get_path(LIBRARY_PATH).'formvalidator/FormValidator.class.php');
require_once (api_get_path(LIBRARY_PATH).'usermanager.lib.php');
require_once (api_get_path(CONFIGURATION_PATH).'profile.conf.inc.php');
require_once (api_get_path(CONFIGURATION_PATH).'profile.conf.php');
$tool_name = get_lang('Registration');
Display :: display_header($tool_name);

@ -1,5 +1,5 @@
<?php
// $Id: profile.php 11097 2007-02-12 09:02:42Z elixir_julian $
// $Id: profile.php 11139 2007-02-17 15:43:14Z yannoo $
/*
==============================================================================
Dokeos - elearning and course management software
@ -28,7 +28,7 @@
* This file displays the user's profile,
* optionally it allows users to modify their profile as well.
*
* See inc/conf/profile.conf.inc.php to modify settings
* See inc/conf/profile.conf.php to modify settings
*
* @package dokeos.auth
==============================================================================
@ -70,7 +70,7 @@ if (!empty ($_GET['coursePath']))
Configuration file
-----------------------------------------------------------
*/
require_once (api_get_path(CONFIGURATION_PATH).'profile.conf.inc.php');
require_once (api_get_path(CONFIGURATION_PATH).'profile.conf.php');
/*
-----------------------------------------------------------

@ -1,5 +1,4 @@
<?php
/**
==============================================================================
* This file holds the configuration constants and variables

@ -1,4 +1,4 @@
<?php // $Id: install_files.inc.php 11072 2007-02-07 15:35:52Z yannoo $
<?php // $Id: install_files.inc.php 11139 2007-02-17 15:43:14Z yannoo $
/*
==============================================================================
Dokeos - elearning and course management software
@ -48,7 +48,7 @@ if(defined('DOKEOS_INSTALL'))
copy('../inc/conf/add_course.conf.dist.php','../inc/conf/add_course.conf.php');
copy('../inc/conf/course_info.conf.dist.php','../inc/conf/course_info.conf.php');
copy('../inc/conf/mail.conf.dist.php','../inc/conf/mail.conf.php');
copy('../inc/conf/profile.conf.dist.php','../inc/conf/profile.conf.inc.php');
copy('../inc/conf/profile.conf.dist.php','../inc/conf/profile.conf.php');
}
else
{

@ -1,4 +1,4 @@
<?php //$Id: update-files-1.6.x-1.8.0.inc.php 11030 2007-01-30 13:39:26Z yannoo $
<?php //$Id: update-files-1.6.x-1.8.0.inc.php 11139 2007-02-17 15:43:14Z yannoo $
/*
==============================================================================
Dokeos - elearning and course management software
@ -159,7 +159,7 @@ if (defined('DOKEOS_INSTALL') || defined('DOKEOS_COURSE_UPDATE'))
copy($updatePath.'claroline/inc/conf/add_course.conf.php',$pathForm.'main/inc/conf/add_course.conf.php');
copy($updatePath.'claroline/inc/conf/course_info.conf.php',$pathForm.'main/inc/conf/course_info.conf.php');
copy($updatePath.'claroline/inc/conf/mail.conf.php',$pathForm.'main/inc/conf/mail.conf.php');
copy($updatePath.'claroline/inc/conf/profile.conf.inc.php',$pathForm.'main/inc/conf/profile.conf.inc.php');
copy($updatePath.'claroline/inc/conf/profile.conf.inc.php',$pathForm.'main/inc/conf/profile.conf.php');
/*
if (defined('DOKEOS_INSTALL'))

Loading…
Cancel
Save