]> git.llucax.com Git - mecon/intranet.git/blobdiff - sistema/www/login.php
Se agregan svn:keywords y se quita el '.php' de varios links.
[mecon/intranet.git] / sistema / www / login.php
index 2a3ae8b7d5b25cb621c019a900a1dd5781956631..a4965dcfafd647a1299fb867f5c5c5c3a8b7d3d1 100644 (file)
@@ -54,9 +54,7 @@
   {
     if(!isset($_SESSION['usuario']) )
     {
-      if((isset($_GET['redirect']) && $_GET['redirect'] == 'sistemas') ||
-         (isset($_POST['redirect']) && $_POST['redirect'] == 'sistemas'))
-      {
+      if (@$_REQUEST['redirect'] == 'sistemas' || @$_REQUEST['embperl']) {
            $m = new HTML_DietMarco('sistemas', 'Sistemas');
 //           $m->addTitle('Sistemas');
       }
   }
 
   if(isset($_SESSION['usuario']) && ! @ $error &&
-       (isset($_POST['redirect']) || isset($_GET['redirect'])))
+       (@$_REQUEST['redirect'])) 
   {
-    @ $redirect = $_GET['redirect'].$_POST['redirect'];
+    $redirect = $_REQUEST['redirect'];
     $query = "SELECT link
               FROM servicio
               WHERE servicio = $redirect";
     $link = $DB->getOne($query);
-    if(PEAR::isError($link))
-      header('location: '.$redirect);
+    if(PEAR::isError($link)) {
+
+      if (@$_REQUEST['embperl']) {
+         header('Location: /Php2Embperl_Session?redirect='.$redirect);
+      }
+      else {
+         header('Location: '.$redirect);
+      }
+    }
     else
       header('location: '.$link);
   }