Add missing lvalue. Props markjaquith and joetan. fixes #3928
git-svn-id: http://svn.automattic.com/wordpress/trunk@5126 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
5160c44c9d
commit
fdac6628a7
|
@ -89,7 +89,7 @@ echo "<ul id='upload-menu'>\n";
|
||||||
foreach ( $wp_upload_tabs as $t => $tab_array ) { // We've already done the current_user_can check
|
foreach ( $wp_upload_tabs as $t => $tab_array ) { // We've already done the current_user_can check
|
||||||
$href = add_query_arg( array('tab' => $t, 'ID' => '', 'action' => '', 'paged' => '') );
|
$href = add_query_arg( array('tab' => $t, 'ID' => '', 'action' => '', 'paged' => '') );
|
||||||
if ( isset($tab_array[4]) && is_array($tab_array[4]) )
|
if ( isset($tab_array[4]) && is_array($tab_array[4]) )
|
||||||
add_query_arg( $tab_array[4], $href );
|
$href = add_query_arg( $tab_array[4], $href );
|
||||||
$_href = clean_url( $href);
|
$_href = clean_url( $href);
|
||||||
$page_links = '';
|
$page_links = '';
|
||||||
$class = 'upload-tab alignleft';
|
$class = 'upload-tab alignleft';
|
||||||
|
|
Loading…
Reference in New Issue