Made lower to upper case:
[core.git] / inc / classes / main / io / class_FrameworkFileOutputPointer.php
index 21e82ba3010f2ef80a9cd9d5b0a49f5f1bd9e852..4be2d02e123722d4243c31a964305b54912fe862 100644 (file)
@@ -68,12 +68,12 @@ class FrameworkFileOutputPointer extends BaseFrameworkSystem {
                // Some pre-sanity checks...
                if (is_null($fileName)) {
                        // No filename given
-                       throw new FileIsEmptyException(null, self::EXCEPTION_UNEXPECTED_EMPTY_STRING);
+                       throw new FileIsEmptyException(NULL, self::EXCEPTION_UNEXPECTED_EMPTY_STRING);
                } // END - if
 
                // Try to open a handler
                $filePointer = @fopen($fileName, $mode);
-               if (($filePointer === null) || ($filePointer === false)) {
+               if (($filePointer === null) || ($filePointer === FALSE)) {
                        // Something bad happend
                        throw new FileIoException ($fileName, self::EXCEPTION_FILE_POINTER_INVALID);
                } // END - if