Changeset 16159 for trunk/wp-includes/js/tinymce/wp-mce-link-includes.php
- Timestamp:
- 11/02/2010 11:25:24 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/js/tinymce/wp-mce-link-includes.php
r15943 r16159 3 3 class WP_Tab_Bar { 4 4 var $tabs = array(); 5 6 var $id = ''; 7 var $classes = array(); 5 8 6 9 var $selected = ''; … … 22 25 $this->selected = $this->tabs[0]['for']; 23 26 24 $out = "<ul class='wp-tab-bar'>"; 27 array_unshift( $this->classes, 'wp-tab-bar' ); 28 29 $out = "<ul id='$this->id' class='" . esc_attr( implode( ' ', $this->classes ) ) . "'>"; 25 30 foreach( $this->tabs as $tab ) { 26 31 if ( !isset($tab['url']) )
Note: See TracChangeset
for help on using the changeset viewer.