source: admin/WebConsole/includes/RedireccionaError.php @ f8a75f18

opengnsys-1.0.6b
Last change on this file since f8a75f18 was 3ec149c, checked in by alonso <alonso@…>, 15 years ago

git-svn-id: https://opengnsys.es/svn/trunk@1314 a21b9725-9963-47de-94b9-378ad31fedc9

  • Property mode set to 100644
File size: 378 bytes
Line 
1<?
2/*______________________________________________________________________
3        Redirecciona a la página de error
4        Parametros:
5                - Literal del error
6_______________________________________________________________________*/
7function RedireccionaError($herror){
8
9        $urlerror=urlencode($herror);
10        $wurl="../seguridad/logerror.php?herror=".$urlerror;
11        Header('Location: '.$wurl);
12}
13?>
Note: See TracBrowser for help on using the repository browser.