Browse Source

Fixes #1296: stricter check of dashes in route.

tags/2.0.0-beta
Qiang Xue 11 years ago
parent
commit
210cbda732
  1. 2
      framework/yii/base/Module.php

2
framework/yii/base/Module.php

@ -623,7 +623,7 @@ abstract class Module extends Component
if (isset($this->controllerMap[$id])) {
$controller = Yii::createObject($this->controllerMap[$id], $id, $this);
} elseif (preg_match('/^[a-z0-9\\-_]+$/', $id)) {
} elseif (preg_match('/^[a-z0-9\\-_]+$/', $id) && strpos($id, '--') === false && trim($id, '-') === $id) {
$className = str_replace(' ', '', ucwords(str_replace('-', ' ', $id))) . 'Controller';
$classFile = $this->controllerPath . DIRECTORY_SEPARATOR . $className . '.php';
if (!is_file($classFile)) {

Loading…
Cancel
Save