blob: de4d3b3d95ef8d702cfa79438904d371b8085d20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
class Layout extends TTemplateControl
{
public function onLoad($param)
{
$this->getPage()->setTitle("Verifying Ticket 653");
$this->ticketlink->setText("Verifying Ticket 653");
$this->ticketlink->setNavigateUrl("http://trac.pradosoft.com/prado/ticket/653");
}
}
?>
|