fix: [CS] CS brought up to date

pull/3910/head
iglocska 2018-11-23 14:22:18 +01:00
parent 8f83041389
commit 65da1e8fa8
2 changed files with 5613 additions and 5100 deletions

File diff suppressed because it is too large Load Diff

View File

@ -21,14 +21,14 @@
App::uses('AppController', 'Controller');
class PagesController extends AppController {
class PagesController extends AppController
{
public $name = 'Pages';
public $uses = array();
// displays a view based on the page to display passed as parameters
public function display() {
public function display()
{
$path = func_get_args();
$count = count($path);
@ -42,7 +42,9 @@ class PagesController extends AppController {
}
if (!empty($path[1])) {
$subpage = $path[1];
if ($path[1] === 'md') $this->layout = false;
if ($path[1] === 'md') {
$this->layout = false;
}
}
if (!empty($path[$count - 1])) {
$title_for_layout = Inflector::humanize($path[$count - 1]);