summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/protected/pages/Ticket439.php
blob: dcb46412ce504588cb0a7b83bc39ef1817384c23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

Prado::using('System.Web.UI.ActiveControls.*');

class Ticket439 extends TPage
{

	function button_clicked($sender, $param)
	{
		$page = $this->Service->constructUrl('Home');
		$this->Response->redirect($page);
	}
}

?>