Merge pull request #8427 from fhugas/patch-1

Removed redundant strtolower()
This commit is contained in:
Mike Jolley 2015-06-22 10:03:50 +01:00
commit 36549725fb
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ class WC_Autoloader {
* @return string
*/
private function get_file_name_from_class( $class ) {
return 'class-' . str_replace( '_', '-', strtolower( $class ) ) . '.php';
return 'class-' . str_replace( '_', '-', $class ) . '.php';
}
/**