diff options
author | wei <> | 2006-04-14 05:14:34 +0000 |
---|---|---|
committer | wei <> | 2006-04-14 05:14:34 +0000 |
commit | 7949f7fe746dbbe3eeefbc123bbb2c551b091733 (patch) | |
tree | 3880a5fbad51a2c9aca5ab5c5dc5b01f1a8f2da6 /tests/FunctionalTests/tickets/protected/pages/Ticket93.php | |
parent | 9e21d160ead61cd0ed86c16a0668c50b14f58baf (diff) |
Fixed #93 and #121
Diffstat (limited to 'tests/FunctionalTests/tickets/protected/pages/Ticket93.php')
-rw-r--r-- | tests/FunctionalTests/tickets/protected/pages/Ticket93.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/FunctionalTests/tickets/protected/pages/Ticket93.php b/tests/FunctionalTests/tickets/protected/pages/Ticket93.php new file mode 100644 index 00000000..ea5745a8 --- /dev/null +++ b/tests/FunctionalTests/tickets/protected/pages/Ticket93.php @@ -0,0 +1,15 @@ +<?php
+/*
+ * Created on 13/04/2006
+ */
+
+class Ticket93 extends TPage
+{
+ public function buttonClicked($sender,$param)
+ {
+ //echo $param->getPostBackValue();
+ print_r($param);
+ }
+}
+
+?>
|