1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-11 17:14:42 +02:00

new image pack system imode and admin images updated

This commit is contained in:
sweetas
2006-12-07 15:41:50 +00:00
parent 99111f78db
commit 8cb82b65dc
41 changed files with 334 additions and 309 deletions

View File

@@ -11,9 +11,9 @@
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/class2.php,v $
| $Revision: 1.3 $
| $Date: 2006-12-05 09:32:15 $
| $Author: mrpete $
| $Revision: 1.4 $
| $Date: 2006-12-07 15:41:49 $
| $Author: sweetas $
+----------------------------------------------------------------------------+
*/
//
@@ -797,6 +797,14 @@ if (strpos(e_SELF, $ADMIN_DIRECTORY) !== FALSE || strpos(e_SELF, "admin.php") !=
if(!defined("IMODE")) define("IMODE", "lite");
if (IMODE == 'lite') {
$imode = 'nuvola_light';
} else if (IMODE == 'dark') {
$imode = 'nuvola_dark';
} else {
$imode = IMODE;
}
if ($pref['anon_post'] ? define("ANON", TRUE) : define("ANON", FALSE));
if (Empty($pref['newsposts']) ? define("ITEMVIEW", 15) : define("ITEMVIEW", $pref['newsposts']));