From 8d03971834c105112909753af12bbc066709165f Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sat, 19 May 2007 05:46:29 +0100 Subject: do not reference gettext modules if ENABLE_TRANSLATIONS is disabled --- backend.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'backend.php') diff --git a/backend.php b/backend.php index 9b28f650e..3b5c071c4 100644 --- a/backend.php +++ b/backend.php @@ -20,7 +20,10 @@ require_once "functions.php"; no_cache_incantation(); - startup_gettext(); + + if (ENABLE_TRANSLATIONS == true) { + startup_gettext(); + } $script_started = getmicrotime(); -- cgit v1.2.3-54-g00ecf