From 477f1d2b781bf9aeb692ed12d742ec1b8cc04212 Mon Sep 17 00:00:00 2001 From: David Mudrak Date: Thu, 23 Jun 2011 13:38:15 +0200 Subject: [PATCH] MDLQA-1147 Fixed a typo in the exception class name Thanks Steve Turley for spotting and reporting this during the QA. --- backup/util/helper/convert_helper.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backup/util/helper/convert_helper.class.php b/backup/util/helper/convert_helper.class.php index 7301b4bb915..539f4f832dc 100644 --- a/backup/util/helper/convert_helper.class.php +++ b/backup/util/helper/convert_helper.class.php @@ -89,7 +89,7 @@ abstract class convert_helper { $filepath = $dirpath . '/moodle_backup.xml'; if (!is_dir($dirpath)) { - throw new converter_helper_exception('tmp_backup_directory_not_found', $dirpath); + throw new convert_helper_exception('tmp_backup_directory_not_found', $dirpath); } if (!file_exists($filepath)) {