manageRedirect() static public method

Manage login redirection
static public manageRedirect ( $where )
$where string: where to redirect ?
		<div id="logo_big" style="border-right: 1px solid #ccc; width:220px;" >
			<img src="pics/logo_big.png" alt="GLPI" class="logo2" />
		</div>      
      
      <div id="auth" style="background:#fff;">
      
        <form class="form-horizontal" style="margin-bottom: 0px !important;" action='front/login.php' method='post'>
			<?php 
// Other CAS
if (isset($_GET["noAUTO"])) {
    echo "<input type='hidden' name='noAUTO' value='1'/>";
}
// redirect to ticket
if (isset($_GET["redirect"])) {
    Toolbox::manageRedirect($_GET["redirect"]);
    echo '<input type="hidden" name="redirect" value="' . $_GET['redirect'] . '">';
}
?>
        
                
          <div class="content">
            <h4 class="title"><?php 
echo __('Authentication');
?>
</h4>
            <div class="form-group">
              <div class="col-sm-12">
                <div class="input-group"> <span class="input-group-addon"><i class="fa fa-user"></i></span>
                  <input class="form-control" name="login_name" id="login_name" required="required" placeholder="<?php 
echo __('Login');