summaryrefslogtreecommitdiffstats
path: root/admin/WebConsole/includes/RedireccionaError.php
blob: 92a6cd4c131ca5da5ffbf3490ed9cdb87d564fde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?
/*______________________________________________________________________
	Redirecciona a la página de error
	Parametros: 
		- Literal del error
_______________________________________________________________________*/
function RedireccionaError($herror){

	$urlerror=urlencode($herror);
	$wurl="../seguridad/logerror.php?herror=".$urlerror;
	Header('Location: '.$wurl);
}
?>