1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-07 07:06:30 +02:00

Added record number to page title when editing records.

This commit is contained in:
Cameron
2014-12-10 17:30:01 -08:00
parent b7942691e0
commit dfa8ed4a8a

View File

@@ -2061,6 +2061,11 @@ class e_admin_controller
$this->addTitle();
}
if($action == 'Edit')
{
$this->addTitle('#'.$this->getId()); // Inform user of which record is being edited.
}
ob_start(); //catch any output
$ret = $this->{$actionName}();