Replaced the global variables for table styles to defined CSS classes.
[fa-stable.git] / admin / inst_lang.php
index ee44fdf425bb5178b39a8de78dce2ed6d2f37592..858e13a6afcaea83872d7eda9965adf1fabb722e 100644 (file)
@@ -123,7 +123,7 @@ function handle_delete()
 
 function display_languages()
 {
-       global $table_style, $installed_languages, $dflt_lang;
+       global $installed_languages, $dflt_lang;
 
        $lang = $_SESSION["language"]->code;
 
@@ -135,7 +135,7 @@ function display_languages()
                        document.location.replace('inst_lang.php?c=df&id='+id)
                }
                </script>";
-       start_table($table_style);
+       start_table(TABLESTYLE);
        $th = array(_("Language"), _("Name"), _("Encoding"), _("Right To Left"), _("Default"), "", "");
        table_header($th);
 
@@ -179,7 +179,7 @@ function display_languages()
 
 function display_language_edit($selected_id)
 {
-       global $installed_languages, $table_style2, $dflt_lang;
+       global $installed_languages, $dflt_lang;
 
        if ($selected_id != -1)
                $n = $selected_id;
@@ -196,7 +196,7 @@ function display_language_edit($selected_id)
                }
                </script>";
 
-       start_table($table_style2);
+       start_table(TABLESTYLE2);
 
        if ($selected_id != -1)
        {