diff options
author | ramon <ramongomez@us.es> | 2018-03-06 07:11:30 +0000 |
---|---|---|
committer | ramon <ramongomez@us.es> | 2018-03-06 07:11:30 +0000 |
commit | 7fb33671c365788f4a91bc6008d70a3c77ededbe (patch) | |
tree | 43a7e3ccbfb39b62cc88514cb268990e67f66c48 /admin/WebConsole/propiedades/propiedades_imagenes.php | |
parent | a37e5fc4e8bf00123a5f738f2b32ba360bb45e81 (diff) |
#810: Evitar avisos por variable no asignada cuando no hay acceso al repositorio en propiedades de imagen.
git-svn-id: https://opengnsys.es/svn/branches/version1.1@5639 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'admin/WebConsole/propiedades/propiedades_imagenes.php')
-rw-r--r-- | admin/WebConsole/propiedades/propiedades_imagenes.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/WebConsole/propiedades/propiedades_imagenes.php b/admin/WebConsole/propiedades/propiedades_imagenes.php index 036dc914..4f31f607 100644 --- a/admin/WebConsole/propiedades/propiedades_imagenes.php +++ b/admin/WebConsole/propiedades/propiedades_imagenes.php @@ -109,7 +109,7 @@ if ($opcion!=$op_alta and isset($repokey)) { $imgbksize = isset($result->backupsize) ? humanSize($result->backupsize) : 0; $imglock = @$result->locked; } else { - $imgpath = ""; + $imgpath = $imgsize = $imgbackup = $imglock = ""; } } |