diff options
author | tof <> | 2007-09-28 09:34:07 +0000 |
---|---|---|
committer | tof <> | 2007-09-28 09:34:07 +0000 |
commit | 3c83939b045813d691d4b701b71fd4d01c8492b6 (patch) | |
tree | 13a911343ac7eda69c09aa251c9be0d61ad2aee1 /tests/FunctionalTests/tickets/protected/pages/Ticket691.php | |
parent | 75a968c94815dd7200d9470d47bd01a35f60b833 (diff) |
Add a test for Ticket #691
Diffstat (limited to 'tests/FunctionalTests/tickets/protected/pages/Ticket691.php')
-rw-r--r-- | tests/FunctionalTests/tickets/protected/pages/Ticket691.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/FunctionalTests/tickets/protected/pages/Ticket691.php b/tests/FunctionalTests/tickets/protected/pages/Ticket691.php new file mode 100644 index 00000000..a47a6a9d --- /dev/null +++ b/tests/FunctionalTests/tickets/protected/pages/Ticket691.php @@ -0,0 +1,13 @@ +<?php + +prado::using ('System.Web.UI.ActiveControls.*'); + +class Ticket691 extends TPage +{ + public function list_oncallback ($sender, $param) + { + $sender->Rating=$sender->SelectedIndex+1; + $this->Result->Text="You vote ".$sender->Rating; + } +} +?>
\ No newline at end of file |