diff -c royale-1.2/README.txt royale-1.2.1/README.txt *** royale-1.2/README.txt 2007-05-22 14:05:24.000000000 -0400 --- royale-1.2.1/README.txt 2007-05-24 14:38:14.000000000 -0400 *************** *** 133,138 **** --- 133,144 ---- === CHANGELOG ========================================================================== + 1.2.1 + * the Event Calendar fixes were not included in the previous release + * fixed the 3-column layout option not being read by the stylesheet's fallback method + * fixed the parsing of boolean options for WPMU + * fixed overlapping images issue in page view + 1.2 * tested successfully with WordPress 2.2 * fixed a bug that would break the color cycling feature when a third-party stylesheet diff -c royale-1.2/footer.php royale-1.2.1/footer.php *** royale-1.2/footer.php 2007-05-17 14:59:38.000000000 -0400 --- royale-1.2.1/footer.php 2007-05-24 13:22:24.000000000 -0400 *************** *** 39,48 **** cnt = document.getElementById("content" ); sb1 = document.getElementById("sidebar1"); sb2 = document.getElementById("sidebar2"); ! if ((sb1 && cnt.clientHeight < sb1.clientHeight) || (sb2 && cnt.clientHeight < sb2.clientHeight)) { ! if (sb2) { cnt.style.height = (sb1.clientHeight>sb2.clientHeight?sb1.clientHeight:sb2.clientHeight) +'px'; } ! else { cnt.style.height = sb1.clientHeight +'px'; } ! } --- 39,47 ---- cnt = document.getElementById("content" ); sb1 = document.getElementById("sidebar1"); sb2 = document.getElementById("sidebar2"); ! ! heightfix = function() { if (sb1) cnt.style.height = Math.max(sb1.clientHeight,cnt.clientHeight,(sb2?sb2.clientHeight:0))+'px'; } ! heightfix(); window.onload = heightfix; Common subdirectories: royale-1.2/images and royale-1.2.1/images diff -c royale-1.2/page.php royale-1.2.1/page.php *** royale-1.2/page.php 2007-03-30 10:14:00.000000000 -0400 --- royale-1.2.1/page.php 2007-05-24 13:24:28.000000000 -0400 *************** *** 15,20 **** --- 15,21 ---- '. __('Pages','royale') .': ', '

', 'number'); ?> +
', '

'); ?> diff -c royale-1.2/sidebar.php royale-1.2.1/sidebar.php *** royale-1.2/sidebar.php 2007-05-17 16:06:58.000000000 -0400 --- royale-1.2.1/sidebar.php 2007-05-24 14:35:58.000000000 -0400 *************** *** 25,31 **** ! '

'. str_replace('&','%26',__('Pages','royale')) .'

','sort_column' => 'menu_order')); ?>