CAPTCHA support basicly finished (weak CAPTCHA!)
[shipsimu.git] / inc / classes / main / class_BaseFrameworkSystem.php
index b49be0347e958253b368d416ad11b529c1390d95..3c1b5fc9ac8c38e5fd09e5d9629e0d8322c6a599 100644 (file)
@@ -152,6 +152,7 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
        const EXCEPTION_FATAL_ERROR                  = 0x035;
        const EXCEPTION_FILE_NOT_FOUND               = 0x036;
        const EXCEPTION_ASSERTION_FAILED             = 0x037;
+       const EXCEPTION_FILE_CANNOT_BE_READ          = 0x038;
 
        /**
         * In the super constructor these system classes shall be ignored or else
@@ -398,7 +399,7 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
         *
         * @return      $cfgInstance    Configuration instance
         */
-       protected final function getConfigInstance () {
+       public final function getConfigInstance () {
                $cfgInstance = Registry::getRegistry()->getInstance('config');
                return $cfgInstance;
        }