summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/protected/pages/Ticket578.php
blob: 7b7463a2a41ebd9965bc067e7f4a20f5f3874ce5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php
Prado::using('System.Web.UI.ActiveControls.*');
class Ticket578 extends TPage
{

	function button2_onclick($sender, $param)
	{
		$this->label1->Text = "Button 1 was clicked : " . htmlspecialchars($this->text1->Text);
	}

}

?>