diff options
author | andi <andi@splitbrain.org> | 2005-03-21 19:52:05 +0100 |
---|---|---|
committer | andi <andi@splitbrain.org> | 2005-03-21 19:52:05 +0100 |
commit | 20159574cc0359ae4b51724ee0d7841885987ba2 (patch) | |
tree | b074d6856b30c68587598d6296662103edc92eb6 | |
parent | 1e605feb90dfdff097f9d5a3f07c4d930ad23106 (diff) | |
download | rpg-20159574cc0359ae4b51724ee0d7841885987ba2.tar.gz rpg-20159574cc0359ae4b51724ee0d7841885987ba2.tar.bz2 |
correct handling of cancel button
darcs-hash:20050321185205-9977f-74c7caab5c90fa9fd1e79333d93ff26ad0971349.gz
-rw-r--r-- | inc/actions.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/inc/actions.php b/inc/actions.php index a31360c0b..26bc18fa2 100644 --- a/inc/actions.php +++ b/inc/actions.php @@ -90,6 +90,7 @@ function act_clean($act){ if($act == $lang['btn_save']) $act = 'save'; if($act == $lang['btn_preview']) $act = 'preview'; + if($act == $lang['btn_cancel']) $act = 'show'; $act = strtolower($act); if(array_search($act,array('login','logout','register','save','edit', |