]> git.p6c8.net - jirafeau_mojo42.git/commitdiff
[BUGFIX] Remove redundant style fallback
authorDan Untenzu <untenzu@webit.de>
Wed, 18 Jan 2017 16:56:49 +0000 (17:56 +0100)
committerJerome Jutteau <jerome.jutteau@outscale.com>
Thu, 23 Feb 2017 17:34:19 +0000 (18:34 +0100)
Remove condition for an existing theme,
since a default configuration is always set.

Even if this would not be the case, would
the current fallback try to load a non-existing
theme called "default".

So remove this whole block.

lib/template/header.php

index 2b4e5258a614ceff89745a5e7f98ea1dfa7ea233..14b902ee92b78a6c6ef5fd44319a42af3f3bfb5f 100644 (file)
@@ -15,17 +15,13 @@ if (!isset ($cfg['web_root']))
 else
     $web_root = $cfg['web_root'];
 
-if (!isset ($cfg['style']))
-    $style = 'default';
-else
-    $style = $cfg['style'];
 ?>
 <!DOCTYPE html>
 <html>
 <head>
   <meta charset="utf-8">
   <title><?php echo (true === empty($cfg['title']))? t('Jirafeau, your web file repository') : $cfg['title']; ?></title>
-  <link href="<?php echo $web_root . 'media/' . $style . '/style.css.php'; ?>" rel="stylesheet" type="text/css" />
+  <link href="<?php echo $web_root . 'media/' . $cfg['style'] . '/style.css.php'; ?>" rel="stylesheet" type="text/css" />
 </head>
 <body>
 <script type="text/javascript" src="lib/functions.js.php"></script>

patrick-canterino.de