Tweaks to the action in get_template_part(). fixes #12248, fixes #12941.

git-svn-id: http://svn.automattic.com/wordpress/trunk@14047 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
nacin 2010-04-10 10:40:47 +00:00
parent ae66313f01
commit b4d8b0cbb7
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ function get_sidebar( $name = null ) {
* @param string $name The name of the specialised template.
*/
function get_template_part( $slug, $name = null ) {
do_action( "get_template_part{$slug}", $name );
do_action( "get_template_part_{$slug}", $slug, $name );
$templates = array();
if ( isset($name) )