diff options
author | ramon <ramongomez@us.es> | 2017-10-13 09:16:45 +0000 |
---|---|---|
committer | ramon <ramongomez@us.es> | 2017-10-13 09:16:45 +0000 |
commit | e9182dcff638780e830016516b6d9a56e0dc3e12 (patch) | |
tree | 19137534357168cde72dc9f34c3f041177deb2b6 /admin/WebConsole/propiedades | |
parent | 72bbcf8591f01f284e8901b3683d4222b08312a1 (diff) |
#810: Corregir errata en r5458.
git-svn-id: https://opengnsys.es/svn/branches/version1.1@5459 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'admin/WebConsole/propiedades')
-rw-r--r-- | admin/WebConsole/propiedades/propiedades_repositorios.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/admin/WebConsole/propiedades/propiedades_repositorios.php b/admin/WebConsole/propiedades/propiedades_repositorios.php index 3759d7ad..ee97f047 100644 --- a/admin/WebConsole/propiedades/propiedades_repositorios.php +++ b/admin/WebConsole/propiedades/propiedades_repositorios.php @@ -172,13 +172,13 @@ if($apiKeyRepo != ""){ <?php
// Si tenemos informacion del repositorio remoto, mostramos las imagenes
if($repoWithApi == true && is_array($repoImages)){
- echo "<tr class='tabla_listados_sin'><th colspan='4'>".$TbMsg['MSG_CONTENT']." $repodir</th></tr>";
+ echo "<tr class='tabla_listados_sin'><th colspan='4'>".$TbMsg['MSG_CONTENT']." $repodir</th></tr>\n";
-echo "<tr><td>".$TbMsg['MSG_IMAGE']."</td><td>".$TbMsg['MSG_TYPE']."</td><td>".$TbMsg['MSG_SIZEBYTES']."</td><td>".$TbMsg['MSG_MODIFIED']."</td><td>".$TbMsg['MSG_PERMISSIONS']."</td></tr>\n";
+echo "<tr><td>".$TbMsg['MSG_IMAGE']." (".$TbMsg['MSG_TYPE'].")</td><td>".$TbMsg['MSG_SIZEBYTES']."</td><td>".$TbMsg['MSG_MODIFIED']."</td><td>".$TbMsg['MSG_PERMISSIONS']."</td></tr>\n";
foreach($repoImages as $image){
echo "<tr class='tabla_listados_sin'>";
echo "<td>".$image->name." (".$image->type.")</td>";
- echo "<td>".$image->size." bytes</td>";
+ echo "<td>".$image->size."</td>";
echo "<td>".$image->modified."</td>";
echo "<td>".$image->mode."</td>";
echo "</tr>\n";
|