MINOR Fixed misspelled "extension" in

DataExtension::load_extra_statics()
This commit is contained in:
Sean Harvey 2012-03-09 14:35:12 +13:00
parent 71c2a2286a
commit a2353f793d

View File

@ -47,7 +47,7 @@ abstract class DataExtension extends Extension {
if(preg_match('/^([^(]*)/', $extension, $matches)) {
$extensionClass = $matches[1];
} else {
user_error("Bad extenion '$extension' - can't find classname", E_USER_WARNING);
user_error("Bad extension '$extension' - can't find classname", E_USER_WARNING);
return;
}