From 00eadb2725e8c4119dc61092b566a156e197e5d4 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Mon, 24 Sep 2007 00:28:13 +0000 Subject: [PATCH] *Typo fix (bug 11434) --- includes/FileStore.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ); } -- 2.20.1