mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-23 01:55:27 +03:00
[DockerHubBridge] Fix bridge name (#1994)
This commit is contained in:
parent
0521ba5873
commit
687eb728d4
1 changed files with 3 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
class DockerhubBridge extends BridgeAbstract {
|
||||
const NAME = 'Dockerhub Bridge';
|
||||
class DockerHubBridge extends BridgeAbstract {
|
||||
const NAME = 'Docker Hub Bridge';
|
||||
const URI = 'https://hub.docker.com';
|
||||
const DESCRIPTION = 'Returns new images for a container';
|
||||
const MAINTAINER = 'VerifiedJoseph';
|
||||
|
@ -64,7 +64,7 @@ EOD;
|
|||
|
||||
public function getName() {
|
||||
if ($this->getInput('user')) {
|
||||
return $this->getRepo() . ' - Dockerhub';
|
||||
return $this->getRepo() . ' - Docker Hub';
|
||||
}
|
||||
|
||||
return parent::getName();
|
||||
|
@ -100,7 +100,6 @@ EOD;
|
|||
<td><a href="{$layersUrl}">{$id}</a></td>
|
||||
<td>{$image->os}/{$image->architecture}</td>
|
||||
</tr>
|
||||
<!--<a href="{$layersUrl}">{$id}</a> {$image->os}/{$image->architecture}-->
|
||||
EOD;
|
||||
}
|
||||
|
Loading…
Reference in a new issue