]> git.mxchange.org Git - core.git/blobdiff - inc/classes/main/factories/web/class_WebNewsFactory.php
Fixed comments (minor)
[core.git] / inc / classes / main / factories / web / class_WebNewsFactory.php
index ba042b41c55ac4ad239f4edace76ee0dd9410204..35546fbd16ed8db1d198673a5ffd05a38391d830 100644 (file)
@@ -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