Skip to content

Commit

Permalink
Update logo with correct case.
Browse files Browse the repository at this point in the history
  • Loading branch information
gav- committed May 5, 2017
1 parent 5737d9b commit fc73295
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
Binary file modified css/RESTfm.logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion demo.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
</head>
<body>
<div id="content" class="content">
<a target="_blank" href="http://www.restfm.com"><img id="logo" width="106" height="36" src="css/RESTfm.logo.png" alt="RESTfm logo"></a>
<a target="_blank" href="http://www.restfm.com"><img id="logo" width="106" height="33" src="css/RESTfm.logo.png" alt="RESTfm logo"></a>
<div id="credentials">
<div id="login_block">
<div class="hide_on_auth">
Expand Down
2 changes: 1 addition & 1 deletion lib/RESTfm/Format/FormatHtml.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public function write (Message $restfmMessage) {
$str .= '<link type="text/css" rel="stylesheet" href="' . \RESTfm\Config::getVar('settings', 'baseURI') . '/css/RESTfm.css">'."\n";
$str .= "</head><body>\n";
$str .= '<div id="logo">' .
'<a target="_blank" href="http://www.restfm.com"><img width="106" height="36" src="' . \RESTfm\Config::getVar('settings', 'baseURI') . '/css/RESTfm.logo.png" alt="RESTfm logo"></a>' .
'<a target="_blank" href="http://www.restfm.com"><img width="106" height="33" src="' . \RESTfm\Config::getVar('settings', 'baseURI') . '/css/RESTfm.logo.png" alt="RESTfm logo"></a>' .
'<span>' . \RESTfm\Version::getRelease() . '</span>' .
'</div>' . "\n";

Expand Down
2 changes: 1 addition & 1 deletion report.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
<body>
<?php if (RESTfm\Config::getVar('settings', 'diagnostics') === TRUE): // Diagnostics enabled. ?>
<div id="logo">
<a target="_blank" href="http://www.restfm.com"><img width="106" height="36" src="css/RESTfm.logo.png" alt="RESTfm logo"></a>
<a target="_blank" href="http://www.restfm.com"><img width="106" height="33" src="css/RESTfm.logo.png" alt="RESTfm logo"></a>
<span><?php echo RESTfm\Version::getRelease() ?></span>
</div>
<h2>RESTfm report</h2>
Expand Down

0 comments on commit fc73295

Please sign in to comment.