From: Aaron Schulz Date: Mon, 24 Sep 2007 00:28:13 +0000 (+0000) Subject: *Typo fix (bug 11434) X-Git-Tag: 1.31.0-rc.0~51319 X-Git-Url: http://git.cyclocoop.org/clavettes/images/siteon3.jpg?a=commitdiff_plain;h=00eadb2725e8c4119dc61092b566a156e197e5d4;p=lhc%2Fweb%2Fwiklou.git *Typo fix (bug 11434) --- diff --git a/includes/FileStore.php b/includes/FileStore.php index 1554d66eb8..a547e7e44a 100644 --- a/includes/FileStore.php +++ b/includes/FileStore.php @@ -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 ); }