remove hardcoded $fontset.
authortokul <tokul@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Thu, 2 Feb 2006 20:13:08 +0000 (20:13 +0000)
committertokul <tokul@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Thu, 2 Feb 2006 20:13:08 +0000 (20:13 +0000)
will work on load_prefs.php on sunday

git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@10628 7612ce4b-ef26-0410-bec9-ea0150e637f0

src/style.php

index 913425ddc5fd76c57806a96f210f9b0354d8dae5..2114787306921aefee0dd3d6b7c851e7e736003d 100644 (file)
@@ -22,20 +22,13 @@ define('SM_PATH','../');
 require_once(SM_PATH . 'functions/global.php');
 require_once(SM_PATH . 'functions/strings.php');
 require_once(SM_PATH . 'config/config.php');
+# FIXME: remove it after template setting moved to get request
 require_once(SM_PATH . 'include/load_prefs.php');
 
-/* temp setting containing list of font styles. Should go to config.php */
-$fontsets=array();
-$fontsets['sans']['NAME']='Sans';
-$fontsets['sans']['STYLE']='helvetica,arial,sans-serif';
-$fontsets['serif']['NAME']='Serif';
-$fontsets['serif']['STYLE']='serif';
-$fontsets['comicsans']['NAME']='Comic Sans';
-$fontsets['comicsans']['STYLE']='comic sans ms,sans-serif';
-$fontsets['vera']['NAME']='Vera';
-$fontsets['vera']['STYLE']='bitstream vera sans,verdana,sans-serif';
-$fontsets['tahoma']['NAME']='Tahoma';
-$fontsets['tahoma']['STYLE']='tahoma,sans-serif';
+/* safety check for older config.php */
+if (!isset($fontsets) || !is_array($fontsets)) {
+    $fontsets=array();
+}
 
 /* template init */
 /** start block copy from right_main.php */
@@ -73,6 +66,7 @@ if (sqgetGlobalVar('themeid',$themeid,SQ_GET) &&
 }
 
 /**
+ * TODO: tokul. $languages are not loaded here.
  * get alignment variable from language settings...
  * MOVE THIS to a central init section !!!!
  */