Rollback LTR changes. it will be resubmitted after stable release.
authortokul <tokul@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Wed, 22 Jan 2003 10:02:48 +0000 (10:02 +0000)
committertokul <tokul@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Wed, 22 Jan 2003 10:02:48 +0000 (10:02 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@4449 7612ce4b-ef26-0410-bec9-ea0150e637f0

functions/set_language_align.php [deleted file]

diff --git a/functions/set_language_align.php b/functions/set_language_align.php
deleted file mode 100644 (file)
index 868a111..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-<?php
-
-/**
- * set_language_align.php
- *
- * Copyright (c) 1999-2003 The SquirrelMail Project Team
- * Licensed under the GNU GPL. For full terms see the file COPYING.
- *
- * which return direction and alignments for the table (stuff like the headers
- * input tags etc. need to be aligned differently in arabic and hebrew).
- *
- * $Id$
- */
-
-    function set_language_align(){
-        GLOBAL $languages, $squirrelmail_language;
-        $text_align = array();
-        if ( isset( $languages[$squirrelmail_language]['DIR']) ) {
-           $text_align['dir']  = $languages[$squirrelmail_language]['DIR'];
-        } else {
-            $text_align['dir'] = 'ltr';
-        }
-        $text_align['left'] = $text_align['dir'] == 'ltr' ? 'left' : 'right';
-        $text_align['right'] = $text_align['dir'] == 'ltr' ? 'right' : 'left';
-        return($text_align);
-    }
-?>
\ No newline at end of file