Explorar el Código

Accessibility: logo alt (#2219)

https://github.com/FreshRSS/FreshRSS/issues/2209
Alexandre Alapetite hace 7 años
padre
commit
48c901bc5c
Se han modificado 2 ficheros con 3 adiciones y 1 borrados
  1. 2 0
      CHANGELOG.md
  2. 1 1
      app/layout/header.phtml

+ 2 - 0
CHANGELOG.md

@@ -22,6 +22,8 @@
 	* Performance + compatibility: Use Apache `SetEnvIf` module if available and fall-back to `RewriteRule` [#2202](https://github.com/FreshRSS/FreshRSS/pull/2202)
 * Security
 	* Fixes when HTTP user does not exist in FreshRSS [#2204](https://github.com/FreshRSS/FreshRSS/pull/2204)
+* Accessibility
+	* Remove alt in logo [#2209](https://github.com/FreshRSS/FreshRSS/pull/2209)
 
 
 ## 2018-12-22 FreshRSS 1.13.0

+ 1 - 1
app/layout/header.phtml

@@ -16,7 +16,7 @@ if (FreshRSS_Auth::accessNeedsAction()) {
 	<div class="item title">
 		<h1>
 			<a href="<?php echo _url('index', 'index'); ?>">
-				<img class="logo" src="<?php echo _i('icon', true); ?>" alt="" />
+				<img class="logo" src="<?php echo _i('icon', true); ?>" alt="" />
 				<?php echo FreshRSS_Context::$system_conf->title; ?>
 			</a>
 		</h1>