]> git.mxchange.org Git - core.git/blobdiff - inc/classes/main/reader/class_ConsoleNewsReader.php
Missed this ... :-(
[core.git] / inc / classes / main / reader / class_ConsoleNewsReader.php
index 5d23a680b81d9eee94853dec1ed99f5ac6b8d456..1aa4b61543c7361b819ce14d92b60db6074dbb45 100644 (file)
@@ -60,13 +60,13 @@ class ConsoleNewsReader extends BaseFrameworkSystem implements ReadableNews, Reg
                $command = $this->getRequestInstance()->getRequestElement('command');
 
                // First get a wrapper instance
-               $wrapperInstance = ObjectFactory::createObjectByConfiguredName('news_db_wrapper_class');
+               $wrapperInstance = DatabaseWrapperFactory::createWrapperByConfiguredName('news_db_wrapper_class');
 
                // Next create a searchable criteria instance
                $criteriaInstance = ObjectFactory::createObjectByConfiguredName('search_criteria_class');
 
                // Add the command as criteria to it at lease
-               $criteriaInstance->addCriteria('page', $command);
+               $criteriaInstance->addCriteria('command', $command);
 
                // Add limitation from config
                $criteriaInstance->setConfiguredLimit('news_' . $command . '_limit');