]> git.mxchange.org Git - core.git/commitdiff
Fixed comments (minor)
authorRoland Haeder <roland@mxchange.org>
Sun, 5 Apr 2015 20:59:06 +0000 (22:59 +0200)
committerRoland Haeder <roland@mxchange.org>
Sun, 5 Apr 2015 20:59:06 +0000 (22:59 +0200)
Signed-off-by: Roland Häder <roland@mxchange.org>
inc/classes/main/controller/html/class_Html
inc/classes/main/controller/html/class_HtmlConfirmController.php
inc/classes/main/controller/html/class_HtmlDefaultNewsController.php
inc/classes/main/controller/html/class_HtmlLoginController.php
inc/classes/main/controller/html/class_HtmlLogoutDoneController.php
inc/classes/main/controller/html/class_HtmlProblemController.php
inc/classes/main/controller/html/class_HtmlRegisterController.php
inc/classes/main/factories/web/class_WebNewsFactory.php

index 6c1da014057f85260f4fa7b9d4df6ed8315d65e0..6d3708f356fe2df254d7cd4024ab788d59c78e69 100644 (file)
@@ -73,7 +73,7 @@ class Html???Controller extends BaseController implements Controller {
                // Execute the command
                $commandInstance->execute($requestInstance, $responseInstance);
 
                // Execute the command
                $commandInstance->execute($requestInstance, $responseInstance);
 
-               // Run the pre filters
+               // Run the post filters
                $this->executePostFilters($requestInstance, $responseInstance);
 
                // Flush the response out
                $this->executePostFilters($requestInstance, $responseInstance);
 
                // Flush the response out
index b988de5aa0e47a867b18d4d8a08bbe7e08d8c23f..8e3147e2c2b16af00b755672e090c05ca50b27ae 100644 (file)
@@ -76,7 +76,7 @@ class HtmlConfirmController extends BaseController implements Controller {
                // Execute the command
                $commandInstance->execute($requestInstance, $responseInstance);
 
                // Execute the command
                $commandInstance->execute($requestInstance, $responseInstance);
 
-               // Run the pre filters
+               // Run the post filters
                $this->executePostFilters($requestInstance, $responseInstance);
 
                // Flush the response out
                $this->executePostFilters($requestInstance, $responseInstance);
 
                // Flush the response out
index 8cf33168e3188d94485889c5c838981a2d92a144..36b0b96b3cb76b99628b50d4c4a8c2651e1bb6bf 100644 (file)
@@ -76,7 +76,7 @@ class HtmlDefaultNewsController extends BaseController implements Controller {
                // Execute the command
                $commandInstance->execute($requestInstance, $responseInstance);
 
                // Execute the command
                $commandInstance->execute($requestInstance, $responseInstance);
 
-               // Run the pre filters
+               // Run the post filters
                $this->executePostFilters($requestInstance, $responseInstance);
 
                // Flush the response out
                $this->executePostFilters($requestInstance, $responseInstance);
 
                // Flush the response out
index a90168782e490d4b0cdeba97321faab5e2ef2edc..eef5b5ee00d6848ac0410a4189039d4815e65f72 100644 (file)
@@ -74,7 +74,7 @@ class HtmlLoginController extends BaseController implements Controller {
                // Execute the command
                $commandInstance->execute($requestInstance, $responseInstance);
 
                // Execute the command
                $commandInstance->execute($requestInstance, $responseInstance);
 
-               // Run the pre filters
+               // Run the post filters
                $this->executePostFilters($requestInstance, $responseInstance);
 
                // Flush the response out
                $this->executePostFilters($requestInstance, $responseInstance);
 
                // Flush the response out
index 4762d925e5a755cafdc764c491ae612602f86f2a..4f6f98be79a0cf1c1cf21a5f1469f3cf32fb2497 100644 (file)
@@ -73,7 +73,7 @@ class HtmlLogoutDoneController extends BaseController implements Controller {
                // Execute the command
                $commandInstance->execute($requestInstance, $responseInstance);
 
                // Execute the command
                $commandInstance->execute($requestInstance, $responseInstance);
 
-               // Run the pre filters
+               // Run the post filters
                $this->executePostFilters($requestInstance, $responseInstance);
 
                // Flush the response out
                $this->executePostFilters($requestInstance, $responseInstance);
 
                // Flush the response out
index e3dc2ce2f7acce8d7bd6cf394acd784bc3f4c0fe..3a1551c61f98d80713c71cd5fae5b843b82ebac3 100644 (file)
@@ -73,7 +73,7 @@ class HtmlProblemController extends BaseController implements Controller {
                // Execute the command
                $commandInstance->execute($requestInstance, $responseInstance);
 
                // Execute the command
                $commandInstance->execute($requestInstance, $responseInstance);
 
-               // Run the pre filters
+               // Run the post filters
                $this->executePostFilters($requestInstance, $responseInstance);
 
                // Flush the response out
                $this->executePostFilters($requestInstance, $responseInstance);
 
                // Flush the response out
index b4348f8fa571d846c25323c0212c4d112712f56e..0c9579035c884af3a5460bc3b3b54f09bd4b4e97 100644 (file)
@@ -73,7 +73,7 @@ class HtmlRegisterController extends BaseController implements Controller {
                // Execute the command
                $commandInstance->execute($requestInstance, $responseInstance);
 
                // Execute the command
                $commandInstance->execute($requestInstance, $responseInstance);
 
-               // Run the pre filters
+               // Run the post filters
                $this->executePostFilters($requestInstance, $responseInstance);
 
                // Flush the response out
                $this->executePostFilters($requestInstance, $responseInstance);
 
                // Flush the response out
index ba042b41c55ac4ad239f4edace76ee0dd9410204..35546fbd16ed8db1d198673a5ffd05a38391d830 100644 (file)
@@ -51,18 +51,18 @@ class WebNewsFactory extends BaseFactory {
                // Get "page"
                $page = $requestInstance->getRequestElement('page');
 
                // Get "page"
                $page = $requestInstance->getRequestElement('page');
 
-               // Is "page" used?
+               // Is 'page' used?
                if (!empty($page)) {
                        // Then add it
                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
                        $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
 
                        } // END - if
                } // END - if