# HG changeset patch
# User Dan
# Date 1186348217 14400
# Node ID 03c7f5ec1e4c3c7f074918a5a139a6ece1287d86
# Parent d7fc25acd3f3cd9eccfb596dbcf2c11da9a42d0c
Fixed IE6 + Admin theme, version typo in installer, and paginator + IE6
diff -r d7fc25acd3f3 -r 03c7f5ec1e4c includes/functions.php
--- a/includes/functions.php Sun Aug 05 15:58:50 2007 -0400
+++ b/includes/functions.php Sun Aug 05 17:10:17 2007 -0400
@@ -2058,7 +2058,12 @@
$this_page = ceil ( $start / $perpage );
// Build paginator
- $begin = '
+ $pg_css = ( strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') ) ?
+ // IE-specific hack
+ 'display: block; width: 1px;':
+ // Other browsers
+ 'display: table; margin: 10px 0 0 auto;';
+ $begin = '
Page: | ';
$block = '{LINK} | ';
diff -r d7fc25acd3f3 -r 03c7f5ec1e4c install.php
--- a/install.php Sun Aug 05 15:58:50 2007 -0400
+++ b/install.php Sun Aug 05 17:10:17 2007 -0400
@@ -315,7 +315,7 @@
Welcome to Enano
-
version 1.0 – stable
+ version 1.0.1 – stable
also affectionately known as "loch ness" :)
+
+
+
diff -r d7fc25acd3f3 -r 03c7f5ec1e4c themes/admin/css-ie/iefixes.css
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/themes/admin/css-ie/iefixes.css Sun Aug 05 17:10:17 2007 -0400
@@ -0,0 +1,9 @@
+table.wrapper td.top-left { width: 37px; height: 28px; background-image: url(../images/window-gif/window-topcorners.gif); background-repeat: no-repeat; }
+table.wrapper td.top { height: 28px; background-image: url(../images/window-gif/window-top.gif); background-repeat: repeat-x; }
+table.wrapper td.top-right { width: 37px; height: 28px; background-image: url(../images/window-gif/window-topcorners.gif); background-repeat: no-repeat; background-position: -37px 0px; }
+table.wrapper td.left { width: 37px; background-image: url(../images/window-gif/window-left.gif); background-repeat: repeat-y; }
+table.wrapper td.right { width: 37px; background-image: url(../images/window-gif/window-right.gif); background-repeat: repeat-y; }
+table.wrapper td.bottom-left { width: 37px; height: 44px; background-image: url(../images/window-gif/window-bottomcorners.gif); background-repeat: no-repeat; }
+table.wrapper td.bottom { height: 44px; background-image: url(../images/window-gif/window-bottom.gif); background-repeat: repeat-x; }
+table.wrapper td.bottom-right { width: 37px; height: 44px; background-image: url(../images/window-gif/window-bottomcorners.gif); background-repeat: no-repeat; background-position: -37px 0px; }
+
diff -r d7fc25acd3f3 -r 03c7f5ec1e4c themes/admin/header.tpl
--- a/themes/admin/header.tpl Sun Aug 05 15:58:50 2007 -0400
+++ b/themes/admin/header.tpl Sun Aug 05 17:10:17 2007 -0400
@@ -5,6 +5,9 @@
+
{JS_DYNAMIC_VARS}
diff -r d7fc25acd3f3 -r 03c7f5ec1e4c themes/admin/images/window-gif/window-bottom.gif
Binary file themes/admin/images/window-gif/window-bottom.gif has changed
diff -r d7fc25acd3f3 -r 03c7f5ec1e4c themes/admin/images/window-gif/window-bottomcorners.gif
Binary file themes/admin/images/window-gif/window-bottomcorners.gif has changed
diff -r d7fc25acd3f3 -r 03c7f5ec1e4c themes/admin/images/window-gif/window-left.gif
Binary file themes/admin/images/window-gif/window-left.gif has changed
diff -r d7fc25acd3f3 -r 03c7f5ec1e4c themes/admin/images/window-gif/window-right.gif
Binary file themes/admin/images/window-gif/window-right.gif has changed
diff -r d7fc25acd3f3 -r 03c7f5ec1e4c themes/admin/images/window-gif/window-top.gif
Binary file themes/admin/images/window-gif/window-top.gif has changed
diff -r d7fc25acd3f3 -r 03c7f5ec1e4c themes/admin/images/window-gif/window-topcorners.gif
Binary file themes/admin/images/window-gif/window-topcorners.gif has changed
---|