Opened 20 months ago
Closed 20 months ago
#5491 closed theme (live)
THEME: Atahualpa - 3.6.8
| Reported by: | BytesForAll | Owned by: | chipbennett |
|---|---|---|---|
| Priority: | major | Keywords: | theme-atahualpa |
| Cc: | lmmmuc@… |
Description
Atahualpa - 3.6.8
Configure your custom theme: Fixed or flexible width layout, with min/max width, 0 - 4 sidebars, very browser safe (incl. IE6), create custom widget areas, import/export styles (several styles included), color pickers, over 200 options.
Theme URL - http://wordpress.bytesforall.com/
Author URL - http://forum.bytesforall.com/
SVN - http://themes.svn.wordpress.org/atahualpa/3.6.8
ZIP - http://wordpress.org/extend/themes/download/atahualpa.3.6.8.zip?nostats=1
Diff with previous version: http://themes.trac.wordpress.org/changeset?old_path=/atahualpa/3.6.7&new_path=/atahualpa/3.6.8
All previous tickets for this theme: http://themes.trac.wordpress.org/query?col=id&col=summary&col=keywords&col=owner&col=status&col=resolution&keywords=~theme-atahualpa&order=priority
Change History (2)
comment:1 Changed 20 months ago by chipbennett
- Owner set to chipbennett
- Status changed from new to assigned
comment:2 Changed 20 months ago by chipbennett
- Resolution set to approved
- Status changed from assigned to closed


Change Log
Issues found by the theme check plugin:
Required, Can Be Fixed in Next Revision
// Search box if ( $bfa_ata['show_search_box'] == "Yes" ) { echo '<td valign="bottom" class="search-box" align="right"><div class="searchbox"> <form method="get" class="searchform" action="' . home_url() . '/"> <div class="searchbox-form">' . // Since 3.6.8: Removed check whether get_search_query() exists and added esc_js '<input type="text" class="text inputblur" onfocus="this.value=\'' . ( get_search_query() ? esc_js(get_search_query()) : '' ) . '\'" value="' . ( get_search_query() ? esc_js(get_search_query()) : $bfa_ata['searchbox_text'] ) . '" onblur="this.value=\'' . ( get_search_query() ? esc_js(get_search_query()) : $bfa_ata['searchbox_text'] ) . '\'" name="s" />' . '</div> </form> </div> </td>'; }The default (i.e. Theme-option provided) value $bfa_ata['searchbox_text'] also needs to be escaped. All Theme options must be escaped on output; please verify all other such output as well.Review Summary