diff options
Diffstat (limited to 'includes/session.php')
| -rw-r--r-- | includes/session.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/includes/session.php b/includes/session.php index 433a9c4bcd..7ca4df308d 100644 --- a/includes/session.php +++ b/includes/session.php @@ -124,10 +124,10 @@ define('WT_EVENTS_DIV', 'DIV|ANUL|_SEPR'); define('WT_EOL', "\r\n"); // Gedcom specification/definitions -define ('WT_GEDCOM_LINE_LENGTH', 255 - strlen(WT_EOL)); // Characters, not bytes +define('WT_GEDCOM_LINE_LENGTH', 255 - strlen(WT_EOL)); // Characters, not bytes // Used in Google charts -define ('WT_GOOGLE_CHART_ENCODING', 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-.'); +define('WT_GOOGLE_CHART_ENCODING', 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-.'); // Privacy constants define('WT_PRIV_PUBLIC', 2); // Allows visitors to view the marked information @@ -136,7 +136,7 @@ define('WT_PRIV_NONE', 0); // Allows managers to access the marked informatio define('WT_PRIV_HIDE', -1); // Hide the item to all users // For performance, it is quicker to refer to files using absolute paths -define ('WT_ROOT', realpath(dirname(dirname(__FILE__))) . DIRECTORY_SEPARATOR); +define('WT_ROOT', realpath(dirname(dirname(__FILE__))) . DIRECTORY_SEPARATOR); // Keep track of time statistics, for the summary in the footer $start_time = microtime(true); |
