diff options
| author | 2014-06-13 18:14:44 +0200 | |
|---|---|---|
| committer | 2014-06-13 18:14:44 +0200 | |
| commit | 8c132b2acd6fa5771237cce5b890c7ad534c375a (patch) | |
| tree | 32d093be52cbd221a8f37de5d9e5c53c5c3eea62 | |
| parent | b2eda4a3499c4e342c89259ef0792124ce9037e2 (diff) | |
Fix theme paths for install.php
| -rw-r--r-- | app/views/configure/users.phtml | 6 | ||||
| -rw-r--r-- | p/i/install.php | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/app/views/configure/users.phtml b/app/views/configure/users.phtml index 87aac6198..272896fb2 100644 --- a/app/views/configure/users.phtml +++ b/app/views/configure/users.phtml @@ -22,7 +22,7 @@ <div class="group-controls"> <div class="stick"> <input type="password" id="passwordPlain" name="passwordPlain" autocomplete="off" pattern=".{7,}" <?php echo cryptAvailable() ? '' : 'disabled="disabled" '; ?>/> - <a class="btn toggle-password"/><?php echo FreshRSS_Themes::icon('key'); ?></a> + <a class="btn toggle-password"><?php echo FreshRSS_Themes::icon('key'); ?></a> </div> <noscript><b><?php echo Minz_Translate::t('javascript_should_be_activated'); ?></b></noscript> </div> @@ -34,7 +34,7 @@ <div class="group-controls"> <div class="stick"> <input type="password" id="apiPasswordPlain" name="apiPasswordPlain" autocomplete="off" pattern=".{7,}" <?php echo cryptAvailable() ? '' : 'disabled="disabled" '; ?>/> - <a class="btn toggle-password"/><?php echo FreshRSS_Themes::icon('key'); ?></a> + <a class="btn toggle-password"><?php echo FreshRSS_Themes::icon('key'); ?></a> </div> </div> </div> @@ -184,7 +184,7 @@ <div class="group-controls"> <div class="stick"> <input type="password" id="new_user_passwordPlain" name="new_user_passwordPlain" autocomplete="off" pattern=".{7,}" /> - <a class="btn toggle-password"/><?php echo FreshRSS_Themes::icon('key'); ?></a> + <a class="btn toggle-password"><?php echo FreshRSS_Themes::icon('key'); ?></a> </div> <noscript><b><?php echo Minz_Translate::t('javascript_should_be_activated'); ?></b></noscript> </div> diff --git a/p/i/install.php b/p/i/install.php index 365d0696c..bc9483f73 100644 --- a/p/i/install.php +++ b/p/i/install.php @@ -1028,8 +1028,8 @@ case 6: <meta charset="utf-8"> <meta name="viewport" content="initial-scale=1.0"> <title><?php echo _t ('freshrss_installation'); ?></title> - <link rel="stylesheet" type="text/css" media="all" href="../themes/Origine/global.css" /> - <link rel="stylesheet" type="text/css" media="all" href="../themes/Origine/freshrss.css" /> + <link rel="stylesheet" type="text/css" media="all" href="../themes/Origine/template.css" /> + <link rel="stylesheet" type="text/css" media="all" href="../themes/Origine/origine.css" /> </head> <body> |
