Properly namespaced get_verified_storage_names_with_prefix

8.0.x
Greg Dunlap 2011-08-26 12:37:51 +01:00
parent 2ca4076e98
commit 563e4643c9
1 changed files with 2 additions and 2 deletions
includes

View File

@ -264,12 +264,12 @@ class DrupalVerifiedStorageSQL extends DrupalConfigVerifiedStorage {
}
}
function get_verified_storage_names_with_prefix($prefix = '') {
function config_get_verified_storage_names_with_prefix($prefix = '') {
return DrupalVerifiedStorageSQL::getNamesWithPrefix($prefix);
}
function config_get_names_with_prefix($prefix) {
return get_verified_storage_names_with_prefix($prefix);
return config_get_verified_storage_names_with_prefix($prefix);
}
function config($name, $class = 'DrupalConfig') {