-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSession.inc.php
32 lines (26 loc) · 945 Bytes
/
Session.inc.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
/*=======================================================================================
* *
* Session.inc.php *
* *
*======================================================================================*/
/**
* Default session tags.
*
* This file contains the default session offsets, these tags may be changed in case of
* conflict.
*
* @author Milko A. Škofič <m.skofic@cgiar.org>
* @version 1.00 18/01/2014
*/
/*=======================================================================================
* CONNECTIONS *
*======================================================================================*/
/**
* Data dictionary.
*
* This constant holds the default data dictionary persistent identifier, it represents the
* default session name assigned to the data dictionary.
*/
define( "kSESSION_DDICT", ':ddict' );
?>