Fix extra array wrap in theme info function.

This commit is contained in:
Gerhard 2014-11-27 08:43:03 +02:00
parent 9213138a93
commit d2da65e399
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ class WC_Tracker {
$theme_name = $theme_data->Name;
$theme_version = $theme_data->Version;
}
return array( array( 'name' => $theme_name, 'version' => $theme_version ) );
return array( 'name' => $theme_name, 'version' => $theme_version );
}
/**