summaryrefslogtreecommitdiff
path: root/demos/blog/protected/Pages/ErrorReport.php
blob: 3b24170fdbbba9671f0c535f0209b5b15eb61461 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php

class ErrorReport extends BlogPage
{
	public function getErrorMessage()
	{
		$id=TPropertyValue::ensureInteger($this->Request['id']);
		return BlogErrors::getMessage($id);
	}
}

?>