Changeset 2605:323bbdec481d
- Timestamp:
- 12/08/13 14:56:27 (12 years ago)
- Branch:
- default
- Location:
- plugins
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/simpleMenu/_public.php
r2576 r2605 127 127 // Final rendering 128 128 if ($ret) { 129 $ret = '<ul '.($id ? 'id="'.$id.'"' : '').' class="simple-menu'.($class ? ' '.$class : '').'" >'."\n".$ret."\n".'</ul>';129 $ret = '<ul '.($id ? 'id="'.$id.'"' : '').' class="simple-menu'.($class ? ' '.$class : '').'" role="navigation">'."\n".$ret."\n".'</ul>'; 130 130 } 131 131 } -
plugins/widgets/_widgets_functions.php
r2565 r2605 29 29 ($w->content_only ? '' : '<div id="search"'.($w->class ? ' class="'.html::escapeHTML($w->class).'"' : '').'>'). 30 30 ($w->title ? '<h2><label for="q">'.html::escapeHTML($w->title).'</label></h2>' : ''). 31 '<form action="'.$core->blog->url.'" method="get" >'.31 '<form action="'.$core->blog->url.'" method="get" role="search">'. 32 32 '<fieldset>'. 33 33 '<p><input type="text" size="10" maxlength="255" id="q" name="q" value="'.$value.'" /> '. … … 50 50 ($w->content_only ? '' : '<div id="topnav"'.($w->class ? ' class="'.html::escapeHTML($w->class).'"' : '').'>'). 51 51 ($w->title ? '<h2>'.html::escapeHTML($w->title).'</h2>' : ''). 52 '<ul >';52 '<ul role="navigation">'; 53 53 54 54 if ($core->url->type != 'default') {
Note: See TracChangeset
for help on using the changeset viewer.