Subversion Repositories Applications.papyrus

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
433 ddelon 1
<?php
2
if ($this->HasAccess("read"))
3
{
4
	if (!$this->page)
5
	{
6
		return;
7
	}
8
	else
9
	{
10
		// display raw page
11
		print($this->page["body"]);
12
	}
13
}
14
else
15
{
16
	return;
17
}
18
?>