Browse Source

doc fix.

tags/2.0.0-alpha
Qiang Xue 11 years ago
parent
commit
ce4f37a183
  1. 1
      apps/basic/views/layouts/main.php
  2. 2
      framework/yii/base/Controller.php
  3. 2
      framework/yii/debug/Module.php

1
apps/basic/views/layouts/main.php

@ -1,5 +1,4 @@
<?php
use yii\bootstrap\Nav;
use yii\bootstrap\NavBar;
use yii\helpers\Html;
use yii\widgets\Menu;

2
framework/yii/base/Controller.php

@ -281,7 +281,7 @@ class Controller extends Component
* - an absolute path (e.g. "/main"): the layout name starts with a slash. The actual layout file will be
* looked for under the [[Application::layoutPath|layout path]] of the application;
* - a relative path (e.g. "main"): the actual layout layout file will be looked for under the
* [[Module::viewPath|view path]] of the context module.
* [[Module::layoutPath|layout path]] of the context module.
*
* If the layout name does not contain a file extension, it will use the default one `.php`.
*

2
framework/yii/debug/Module.php

@ -69,7 +69,7 @@ class Module extends \yii\base\Module
$this->logTarget = null;
if ($this->checkAccess($action)) {
return true;
return parent::beforeAction($action);
} elseif ($action->id === 'toolbar') {
return false;
} else {

Loading…
Cancel
Save