Skip to content

Commit

Permalink
module name
Browse files Browse the repository at this point in the history
  • Loading branch information
laruence committed Nov 24, 2015
1 parent faf2194 commit 4aef52e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/issue163.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ file_put_contents(APPLICATION_PATH . "/controllers/Index.php", <<<PHP
<?php
class IndexController extends Yaf_Controller_Abstract {
public function init() {
\$this->forward("index", "Second", "okey");
\$this->forward("Index", "Second", "okey");
}
public function indexAction() {
echo "bad";
Expand Down
2 changes: 1 addition & 1 deletion yaf_controller.c
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ PHP_METHOD(yaf_controller, forward) {
return;
}

request = zend_read_property(yaf_controller_ce, self, ZEND_STRL(YAF_CONTROLLER_PROPERTY_NAME_REQUEST), 1 TSRMLS_CC);
request = zend_read_property(yaf_controller_ce, self, ZEND_STRL(YAF_CONTROLLER_PROPERTY_NAME_REQUEST), 1 TSRMLS_CC);
#if 0
parameters = zend_read_property(yaf_controller_ce, self, ZEND_STRL(YAF_CONTROLLER_PROPERTY_NAME_ARGS), 1 TSRMLS_CC);
#endif
Expand Down

0 comments on commit 4aef52e

Please sign in to comment.