summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/protected/pages/Ticket922.php
diff options
context:
space:
mode:
authormikl <>2008-10-15 18:07:16 +0000
committermikl <>2008-10-15 18:07:16 +0000
commit0c32dad370fb228c36baddd6d7af295aff28f7e8 (patch)
tree31f87fc5afd5601c37f2c081e74af2997f3c3a9c /tests/FunctionalTests/tickets/protected/pages/Ticket922.php
parent3dc2a1c23cefab8eec0fc564ac7ca421e8e357e1 (diff)
Fixed #922
Diffstat (limited to 'tests/FunctionalTests/tickets/protected/pages/Ticket922.php')
-rw-r--r--tests/FunctionalTests/tickets/protected/pages/Ticket922.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/FunctionalTests/tickets/protected/pages/Ticket922.php b/tests/FunctionalTests/tickets/protected/pages/Ticket922.php
new file mode 100644
index 00000000..52d4e411
--- /dev/null
+++ b/tests/FunctionalTests/tickets/protected/pages/Ticket922.php
@@ -0,0 +1,13 @@
+<?php
+class Ticket922 extends TPage {
+ public function processString($sender,$param) {
+ $text = $this->Text->Text;
+ $url= $this->getService()->constructUrl('Ticket922', array('text'=>$text));
+ $this->getResponse()->redirect($url);
+ }
+
+ public function onLoad($param) {
+ if ($this->Request->contains('text'))
+ $this->Result->setText($this->Request->itemAt('text'));
+ }
+}