/******************************************************** * Changelog for the Options WordPress theme * Changes from version 1.2 - 1.2.1 * * Critical updates are labeled * * Note that all changes shown are from the previous version. * These do not apply to older versions. * You need to upgrade completely if you're running very old versions. * * Follow the format if you're upgrading your own theme manually. * "Old" applies to previous code * "New" applies to the new code * ********************************************************/ /******************************************************** * /includes/gallery-stream.php * Critical update ********************************************************/ ** Old $attachments = get_children("post_parent=$post->ID&post_type=attachment&post_mime_type=image&orderby=\"menu_order ASC, ID ASC\"&numberposts=$images_wanted"); ** New $attachments = get_children( array('post_parent' => $post->ID, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'menu_order ID', 'numberposts' => $images_wanted) ); /******************************************************** * /widgets/gallery-stream.php * Critical update ********************************************************/ ** Old $attachments = get_children("post_parent=$post->ID&post_type=attachment&post_mime_type=image&orderby=\"menu_order ASC, ID ASC\"&numberposts=6"); ** New $attachments = get_children( array('post_parent' => $post->ID, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'menu_order ID', 'numberposts' => 6) ); /******************************************************** * /app/get-the-image.php * Critical Update ********************************************************/ ** Old $attachments = get_children("post_parent=$en_post->ID&post_type=attachment&post_mime_type=image&orderby=menu_order ASC, ID ASC&numberposts=1"); ** New $attachments = get_children( array('post_parent' => $en_post->ID, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'menu_order ID', 'numberposts' => 1) ); /******************************************************** * style.css * readme.txt ********************************************************/ ** Old Version: 1.2 ** New Version: 1.2.1 /******************************************************** * functions.php ********************************************************/ ** Old $op_version = 'Options Theme Version 1.2'; ** New $op_version = 'Options Theme Version 1.2.1'; /******************************************************** * comments.php ********************************************************/ ** Old else $avatar = 'wavatar'; ** New else $avatar = false; ** Old ID); ?>

** New

ID); ?>
/******************************************************** * single.php ********************************************************/ ** Old $avatar = 'wavatar'; ** New $avatar = false; /******************************************************** * author.php ********************************************************/ ** Old $avatar = 'wavatar'; ** New $avatar = false;