summaryrefslogtreecommitdiffstats
path: root/admin/WebConsole/frames.php
diff options
context:
space:
mode:
authorramon <ramongomez@us.es>2018-02-27 10:55:06 +0000
committerramon <ramongomez@us.es>2018-02-27 10:55:06 +0000
commit9f1274ec297d6ea74b55e2207f19348cd35235ec (patch)
tree2595b29c14586c4777b18154021d044148bec417 /admin/WebConsole/frames.php
parent9eaa464c22e4dac4416d5d1aa0a6674b8b4e525f (diff)
#804: Sustituir funciones para compatibilidad con PHP 7 ({{{split}}} por {{{explode}}} y {{{ereg...}}} por {{{preg_...}}}).
git-svn-id: https://opengnsys.es/svn/branches/version1.1@5619 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'admin/WebConsole/frames.php')
-rw-r--r--admin/WebConsole/frames.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/WebConsole/frames.php b/admin/WebConsole/frames.php
index fc5b5f66..74faf5d8 100644
--- a/admin/WebConsole/frames.php
+++ b/admin/WebConsole/frames.php
@@ -11,7 +11,7 @@
include_once("./includes/ctrlacc.php");
include_once("./includes/constantes.php");
if (! empty ($_POST['idmicentro'])) {
- $cambiocentro=split(",",$_POST['idmicentro']);
+ $cambiocentro=explode(",",$_POST['idmicentro']);
$_SESSION["widcentro"]=$cambiocentro[0];
$_SESSION["wnombrecentro"]=$cambiocentro[1];
}