summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorramon <ramongomez@us.es>2018-02-27 13:22:40 +0000
committerramon <ramongomez@us.es>2018-02-27 13:22:40 +0000
commit23efc5b26ad27e1f619e6cfb844cfcd0bf267eb4 (patch)
treeffc0d2dc19585ab7ff9e10f215bcfd2849338227
parente38039ed04670a92d4f3c7ddaef5b993eefc29f0 (diff)
#804: Completar compatibilidad de expresiones regulares con PHP 7.
git-svn-id: https://opengnsys.es/svn/branches/version1.1@5622 a21b9725-9963-47de-94b9-378ad31fedc9
-rw-r--r--admin/WebConsole/comandos/EliminarImagenRepositorio.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/admin/WebConsole/comandos/EliminarImagenRepositorio.php b/admin/WebConsole/comandos/EliminarImagenRepositorio.php
index ecffcc12..90011518 100644
--- a/admin/WebConsole/comandos/EliminarImagenRepositorio.php
+++ b/admin/WebConsole/comandos/EliminarImagenRepositorio.php
@@ -415,7 +415,7 @@ function confirmeliminar() {var mensaje="<?php echo $TbMsg[17];?>";if(confirm(me
// ########### Buscando si existe fichero imagen #####################
$buscando="ls /opt/opengnsys/images/$gentor";
$bustor=exec($buscando);
- if(preg_match("/.diff/",$value))
+ if(preg_match("/.diff/",$value))
{
$marcadif=1;
$value = str_replace(".diff", "", $value); //quitar todos los .diff y continuamos
@@ -439,7 +439,7 @@ function confirmeliminar() {var mensaje="<?php echo $TbMsg[17];?>";if(confirm(me
$nombrecaidcentro=0; // No afecta a vista unidad organizativa
$nombrecentro=''; // No afecta a vista unidad organizativa
// ########## Si el Nombre contiene .diff lo quitamos para buscar objeto imagen
- if(preg_match("/.diff/",$imgname)){ $imgname = str_replace(".diff", "", $imgname);}
+ if(preg_match("/.diff/",$imgname)){ $imgname = str_replace(".diff", "", $imgname);}
$cmd->texto="SELECT idcentro, nombrecentro, nombreca FROM imagenes LEFT JOIN centros USING(idcentro) WHERE nombreca='$imgname' ";
$rs=new Recordset;
@@ -465,7 +465,7 @@ function confirmeliminar() {var mensaje="<?php echo $TbMsg[17];?>";if(confirm(me
continue;
}
// si ogunit con dir separados -> si la imagen no es del dir del centro no la muestro
- if ($separarogunit == 1 and ! preg_match("/".$dircentros[$idcentro]."/", "/".$value)) {
+ if ($separarogunit == 1 and ! preg_match("~".$dircentros[$idcentro]."~", "/".$value)) {
$contandotipo++;
continue;
};