*Typo fix (bug 11434)
authorAaron Schulz <aaron@users.mediawiki.org>
Mon, 24 Sep 2007 00:28:13 +0000 (00:28 +0000)
committerAaron Schulz <aaron@users.mediawiki.org>
Mon, 24 Sep 2007 00:28:13 +0000 (00:28 +0000)
includes/FileStore.php

index 1554d66..a547e7e 100644 (file)
@@ -162,7 +162,7 @@ class FileStore {
        function delete( $key ) {
                $destPath = $this->filePath( $key );
                if( false === $destPath ) {
-                       throw new FSExcepton( "file store does not contain file '$key'" );
+                       throw new FSException( "file store does not contain file '$key'" );
                } else {
                        return FileStore::deleteFile( $destPath );
                }