|
From: Maxim <wz...@us...> - 2005-09-09 14:50:15
|
Update of /cvsroot/bbps/bbps In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7873 Modified Files: procesa.php Log Message: * Fixing silly typo b0rking bbps, not even worth mentioning in CHANGELOG :P Index: procesa.php =================================================================== RCS file: /cvsroot/bbps/bbps/procesa.php,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** procesa.php 9 Sep 2005 14:44:14 -0000 1.15 --- procesa.php 9 Sep 2005 14:50:07 -0000 1.16 *************** *** 41,45 **** if($_SESSION['AUTHORIZED']){ // redirect to index ! $redirect = makeRedirect(index.php); header($redirect); exit; --- 41,45 ---- if($_SESSION['AUTHORIZED']){ // redirect to index ! $redirect = makeRedirect('index.php'); header($redirect); exit; *************** *** 68,72 **** // setcookie("AUTHORIZED", "", $exp_time); // redirect to index ! $redirect = makeRedirect(index.php); header($redirect); exit; --- 68,72 ---- // setcookie("AUTHORIZED", "", $exp_time); // redirect to index ! $redirect = makeRedirect('index.php'); header($redirect); exit; *************** *** 139,143 **** } // redirect ! $redirect = makeRedirect(index.php); header($redirect); exit; --- 139,143 ---- } // redirect ! $redirect = makeRedirect('index.php'); header($redirect); exit; *************** *** 255,259 **** } ! $redirect = makeRedirect(index.php); header($redirect); } --- 255,259 ---- } ! $redirect = makeRedirect('index.php'); header($redirect); } *************** *** 270,274 **** $res1 = mysql_query($delete_relations_query) or die(mysql_error()); ! $redirect = makeRedirect(index.php); header($redirect); } --- 270,274 ---- $res1 = mysql_query($delete_relations_query) or die(mysql_error()); ! $redirect = makeRedirect('index.php'); header($redirect); } *************** *** 283,287 **** $alter_keyword_query = "update bbps_keywords set bbps_keyword_name = '$new_keyword_name' where bbps_keyword_id = '$keyid'"; $res1 = mysql_query($alter_keyword_query) or die(mysql_error()); ! $redirect = makeRedirect(index.php); header($redirect); } --- 283,287 ---- $alter_keyword_query = "update bbps_keywords set bbps_keyword_name = '$new_keyword_name' where bbps_keyword_id = '$keyid'"; $res1 = mysql_query($alter_keyword_query) or die(mysql_error()); ! $redirect = makeRedirect('index.php'); header($redirect); } *************** *** 325,329 **** } ! $redirect = makeRedirect(index.php); header($redirect); } --- 325,329 ---- } ! $redirect = makeRedirect('index.php'); header($redirect); } *************** *** 356,360 **** } // Redirect to index ! $redirect = makeRedirect(index.php); header($redirect); } --- 356,360 ---- } // Redirect to index ! $redirect = makeRedirect('index.php'); header($redirect); } |