From: Roland Haeder Date: Sun, 5 Apr 2015 20:59:06 +0000 (+0200) Subject: Fixed comments (minor) X-Git-Url: https://git.mxchange.org/?p=core.git;a=commitdiff_plain;h=254d809ae707ae8b89dbf35a3fe3eee572c3fcf9 Fixed comments (minor) Signed-off-by: Roland Häder --- diff --git a/inc/classes/main/controller/html/class_Html b/inc/classes/main/controller/html/class_Html index 6c1da014..6d3708f3 100644 --- a/inc/classes/main/controller/html/class_Html +++ b/inc/classes/main/controller/html/class_Html @@ -73,7 +73,7 @@ class Html???Controller extends BaseController implements Controller { // Execute the command $commandInstance->execute($requestInstance, $responseInstance); - // Run the pre filters + // Run the post filters $this->executePostFilters($requestInstance, $responseInstance); // Flush the response out diff --git a/inc/classes/main/controller/html/class_HtmlConfirmController.php b/inc/classes/main/controller/html/class_HtmlConfirmController.php index b988de5a..8e3147e2 100644 --- a/inc/classes/main/controller/html/class_HtmlConfirmController.php +++ b/inc/classes/main/controller/html/class_HtmlConfirmController.php @@ -76,7 +76,7 @@ class HtmlConfirmController extends BaseController implements Controller { // Execute the command $commandInstance->execute($requestInstance, $responseInstance); - // Run the pre filters + // Run the post filters $this->executePostFilters($requestInstance, $responseInstance); // Flush the response out diff --git a/inc/classes/main/controller/html/class_HtmlDefaultNewsController.php b/inc/classes/main/controller/html/class_HtmlDefaultNewsController.php index 8cf33168..36b0b96b 100644 --- a/inc/classes/main/controller/html/class_HtmlDefaultNewsController.php +++ b/inc/classes/main/controller/html/class_HtmlDefaultNewsController.php @@ -76,7 +76,7 @@ class HtmlDefaultNewsController extends BaseController implements Controller { // Execute the command $commandInstance->execute($requestInstance, $responseInstance); - // Run the pre filters + // Run the post filters $this->executePostFilters($requestInstance, $responseInstance); // Flush the response out diff --git a/inc/classes/main/controller/html/class_HtmlLoginController.php b/inc/classes/main/controller/html/class_HtmlLoginController.php index a9016878..eef5b5ee 100644 --- a/inc/classes/main/controller/html/class_HtmlLoginController.php +++ b/inc/classes/main/controller/html/class_HtmlLoginController.php @@ -74,7 +74,7 @@ class HtmlLoginController extends BaseController implements Controller { // Execute the command $commandInstance->execute($requestInstance, $responseInstance); - // Run the pre filters + // Run the post filters $this->executePostFilters($requestInstance, $responseInstance); // Flush the response out diff --git a/inc/classes/main/controller/html/class_HtmlLogoutDoneController.php b/inc/classes/main/controller/html/class_HtmlLogoutDoneController.php index 4762d925..4f6f98be 100644 --- a/inc/classes/main/controller/html/class_HtmlLogoutDoneController.php +++ b/inc/classes/main/controller/html/class_HtmlLogoutDoneController.php @@ -73,7 +73,7 @@ class HtmlLogoutDoneController extends BaseController implements Controller { // Execute the command $commandInstance->execute($requestInstance, $responseInstance); - // Run the pre filters + // Run the post filters $this->executePostFilters($requestInstance, $responseInstance); // Flush the response out diff --git a/inc/classes/main/controller/html/class_HtmlProblemController.php b/inc/classes/main/controller/html/class_HtmlProblemController.php index e3dc2ce2..3a1551c6 100644 --- a/inc/classes/main/controller/html/class_HtmlProblemController.php +++ b/inc/classes/main/controller/html/class_HtmlProblemController.php @@ -73,7 +73,7 @@ class HtmlProblemController extends BaseController implements Controller { // Execute the command $commandInstance->execute($requestInstance, $responseInstance); - // Run the pre filters + // Run the post filters $this->executePostFilters($requestInstance, $responseInstance); // Flush the response out diff --git a/inc/classes/main/controller/html/class_HtmlRegisterController.php b/inc/classes/main/controller/html/class_HtmlRegisterController.php index b4348f8f..0c957903 100644 --- a/inc/classes/main/controller/html/class_HtmlRegisterController.php +++ b/inc/classes/main/controller/html/class_HtmlRegisterController.php @@ -73,7 +73,7 @@ class HtmlRegisterController extends BaseController implements Controller { // Execute the command $commandInstance->execute($requestInstance, $responseInstance); - // Run the pre filters + // Run the post filters $this->executePostFilters($requestInstance, $responseInstance); // Flush the response out diff --git a/inc/classes/main/factories/web/class_WebNewsFactory.php b/inc/classes/main/factories/web/class_WebNewsFactory.php index ba042b41..35546fbd 100644 --- a/inc/classes/main/factories/web/class_WebNewsFactory.php +++ b/inc/classes/main/factories/web/class_WebNewsFactory.php @@ -51,18 +51,18 @@ class WebNewsFactory extends BaseFactory { // Get "page" $page = $requestInstance->getRequestElement('page'); - // Is "page" used? + // Is 'page' used? if (!empty($page)) { // Then add it - $configEntry = sprintf("news_reader_%s_class", $page); + $configEntry = sprintf('news_reader_%s_class', $page); - // Get "action" + // Get 'action' $action = $requestInstance->getRequestElement('action'); // Is it also there? if (!empty($action)) { // Then use both for config entry - $configEntry = sprintf("news_reader_%s_%s_class", $page, $action); + $configEntry = sprintf('news_reader_%s_%s_class', $page, $action); } // END - if } // END - if