Subversion Repositories Applications.framework

Rev

Rev 189 | Rev 203 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 189 Rev 198
Line 9... Line 9...
9
 * @package		Framework
9
 * @package		Framework
10
 * @author		Jean-Pascal MILCENT <jpm@tela-botanica.org>
10
 * @author		Jean-Pascal MILCENT <jpm@tela-botanica.org>
11
 * @copyright	Copyright (c) 2009, Tela Botanica (accueil@tela-botanica.org)
11
 * @copyright	Copyright (c) 2009, Tela Botanica (accueil@tela-botanica.org)
12
 * @license		http://www.gnu.org/licenses/gpl.html Licence GNU-GPL-v3
12
 * @license		http://www.gnu.org/licenses/gpl.html Licence GNU-GPL-v3
13
 * @license		http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL-v2 
13
 * @license		http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL-v2 
14
 * @version		SVN : $Id: Config.php 189 2010-04-29 12:22:04Z jpm $
14
 * @version		SVN : $Id: Config.php 198 2010-07-05 14:32:10Z jpm $
15
 * @link		/doc/framework/
15
 * @link		/doc/framework/
16
 */
16
 */
Line 17... Line 17...
17
 
17
 
Line 65... Line 65...
65
				self::chargerFichierContexte(Config::get('info.contexte'));
65
				self::chargerFichierContexte(Config::get('info.contexte'));
66
			}
66
			}
Line 67... Line 67...
67
 
67
 
68
			// Chargement du contexte présent dans le GET
68
			// Chargement du contexte présent dans le GET
-
 
69
			if (isset($_GET['contexte'])) {
69
			if (isset($_GET['contexte'])) {
70
				$_GET['contexte'] = strip_tags($_GET['contexte']);
70
				self::chargerFichierContexte($_GET['contexte']);
71
				self::chargerFichierContexte($_GET['contexte']);
Line 71... Line 72...
71
			}
72
			}
72
 
73
 
-
 
74
			// Chargement du contexte présent dans le POST
73
			// Chargement du contexte présent dans le POST
75
			if (isset($_POST['contexte'])) {
74
			if (isset($_POST['contexte'])) {
76
				$_POST['contexte'] = strip_tags($_POST['contexte']);
75
				self::chargerFichierContexte($_POST['contexte']);
77
				self::chargerFichierContexte($_POST['contexte']);
76
			}
78
			}