From 9c1852ffa489691592c8a3c3a180ca9bd39610b9 Mon Sep 17 00:00:00 2001 From: lkehresman Date: Tue, 4 Apr 2000 12:50:20 +0000 Subject: [PATCH] Added i18n support to left_main git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@387 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- ChangeLog | 1 + src/left_main.php | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/ChangeLog b/ChangeLog index 26626f8b..4d6b5c38 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,6 @@ Version 0.4pre1 -- Development ------------------------------ +- Added option to configure default folder directory. ex: ~/mail - Configuration script added: config/conf.pl - Addressbook with LDAP support - Big speed improvements with folder listing diff --git a/src/left_main.php b/src/left_main.php index a6702f23..d4d1e04f 100644 --- a/src/left_main.php +++ b/src/left_main.php @@ -22,6 +22,9 @@ include("../functions/imap.php"); if (!isset($page_header_php)) include("../functions/page_header.php"); + if (!isset($i18n_php)) + include("../functions/i18n.php"); + echo ""; @@ -75,6 +78,7 @@ /** If it was a successful login, lets load their preferences **/ include("../src/load_prefs.php"); + if (isset($left_refresh) && ($left_refresh != "None") && ($left_refresh != "")) { echo ""; echo ""; -- 2.25.1