diff -c mandigo-1.20/README.txt mandigo-1.20.1/README.txt
*** mandigo-1.20/README.txt 2007-05-18 13:33:16.000000000 -0400
--- mandigo-1.20.1/README.txt 2007-05-24 12:56:52.000000000 -0400
***************
*** 181,186 ****
--- 181,191 ----
=== CHANGELOG ==========================================================================
+ 1.20.1
+ * fixed the 3-column layout option not being read by the stylesheet's fallback method
+ * fixed boolean options for WPMU
+ * fixed the footer gap issue for good
+
1.20
+ added an option to make the header 100px smaller in height
* tested successfully with WordPress 2.2
diff -c mandigo-1.20/footer.php mandigo-1.20.1/footer.php
*** mandigo-1.20/footer.php 2007-05-17 17:53:52.000000000 -0400
--- mandigo-1.20.1/footer.php 2007-05-22 09:12:06.000000000 -0400
***************
*** 38,53 ****
! \n$lastminutecss\n";
echo get_option('mandigo_inserts_header');
?>
--- 35,42 ----
! \n$lastminutecss\n";
echo get_option('mandigo_inserts_header');
?>
Common subdirectories: mandigo-1.20/images and mandigo-1.20.1/images
diff -c mandigo-1.20/style.css mandigo-1.20.1/style.css
*** mandigo-1.20/style.css 2007-05-10 11:49:40.000000000 -0400
--- mandigo-1.20.1/style.css 2007-05-24 12:52:42.000000000 -0400
***************
*** 2,8 ****
Theme Name: Mandigo
Theme URI: http://www.onehertz.com/portfolio/wordpress/
Description: Mandigo is an elegant widget-ready two/three-column Wordpress theme, available in two widths, SEVEN color schemes and 22 languages!
! Version: 1.20
Author: t0mmmmmmm
Author URI: http://www.onehertz.com/portfolio/wordpress/
*/
--- 2,8 ----
Theme Name: Mandigo
Theme URI: http://www.onehertz.com/portfolio/wordpress/
Description: Mandigo is an elegant widget-ready two/three-column Wordpress theme, available in two widths, SEVEN color schemes and 22 languages!
! Version: 1.20.1
Author: t0mmmmmmm
Author URI: http://www.onehertz.com/portfolio/wordpress/
*/
diff -c mandigo-1.20/style.css.php mandigo-1.20.1/style.css.php
*** mandigo-1.20/style.css.php 2007-05-16 10:34:38.000000000 -0400
--- mandigo-1.20.1/style.css.php 2007-05-24 12:42:34.000000000 -0400
***************
*** 24,30 ****
else { require('../../../wp-blog-header.php'); }
$mandigo_em_italics = get_option('mandigo_em_italics');
$mandigo_scheme_random = get_option('mandigo_scheme_random');
! $mandigo_3columns = get_option('mandigo_3column');
$mandigo_sidebar1_left = get_option('mandigo_sidebar1_left');
$mandigo_sidebar2_left = get_option('mandigo_sidebar2_left');
$mandigo_headnav_left = get_option('mandigo_headnav_left');
--- 24,30 ----
else { require('../../../wp-blog-header.php'); }
$mandigo_em_italics = get_option('mandigo_em_italics');
$mandigo_scheme_random = get_option('mandigo_scheme_random');
! $mandigo_3columns = get_option('mandigo_3columns');
$mandigo_sidebar1_left = get_option('mandigo_sidebar1_left');
$mandigo_sidebar2_left = get_option('mandigo_sidebar2_left');
$mandigo_headnav_left = get_option('mandigo_headnav_left');
***************
*** 36,41 ****
--- 36,46 ----
$mandigo_scheme = get_option('mandigo_scheme');
$mandigo_slim_header = get_option('mandigo_slim_header');
$stylesheet_directory = get_bloginfo('stylesheet_directory');
+ foreach (array('em_italics','3columns','sidebar1_left','sidebar2_left','wptog','1024','nofloat','slim_header') as $a) {
+ $a = 'mandigo_'. $a;
+ if ($$a == 'on') $$a = 1;
+ if ($$a == 'off') $$a = 0;
+ }
status_header(200);
}
header('Content-type: text/css');
***************
*** 666,668 ****
--- 671,674 ----
.googlemap img { background: inherit; }
/* End Various Tags & Classes*/
+