]> git.mxchange.org Git - shipsimu.git/blobdiff - application/shoutbox/class_ApplicationHelper.php
EOF->EOC in code templates replaced, training form extended
[shipsimu.git] / application / shoutbox / class_ApplicationHelper.php
index 71800ad7b45f6120681784a29f928fec09f26afa..4adc321bb7e72fe927c4e5141ae59d48737373c2 100644 (file)
@@ -39,7 +39,7 @@
  * You should have received a copy of the GNU General Public License
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
-class ApplicationHelper extends BaseFrameworkSystem implements ManageableApplication {
+class ApplicationHelper extends BaseApplication implements ManageableApplication, Registerable {
        /**
         * The version number of this application
         */
@@ -78,10 +78,6 @@ class ApplicationHelper extends BaseFrameworkSystem implements ManageableApplica
        protected function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
-
-               // Tidy up a little
-               $this->removeSystemArray();
-               $this->removeNumberFormaters();
        }
 
        /**
@@ -185,9 +181,9 @@ class ApplicationHelper extends BaseFrameworkSystem implements ManageableApplica
                $responseType = "web";
 
                // Do we have another response?
-               if ($requestInstance->isRequestElementSet('response')) {
+               if ($requestInstance->isRequestElementSet('request')) {
                        // Then use it
-                       $response = strtolower($requestInstance->getRequestElement('response'));
+                       $response = strtolower($requestInstance->getRequestElement('request'));
                        $responseType = $response;
                } // END - if