Fixed wrong path reported in case of a missing 'data' directory (reported by Markus Wollschlaeger)
1.1 --- a/public_html/admin/install/index.php Sat Nov 07 13:16:38 2009 +0100
1.2 +++ b/public_html/admin/install/index.php Sat Nov 07 14:57:12 2009 +0100
1.3 @@ -1062,7 +1062,7 @@
1.4 $chmod_string = 'chmod -R 777 ';
1.5 // Files to check if writable
1.6 $file_list = array( $_PATH['db-config.php'],
1.7 - $gl_path . (file_exists($gl_path . 'data') ? 'data/' : 'public_html/data/'),
1.8 + $gl_path . 'data/',
1.9 $gl_path . 'logs/error.log',
1.10 $_PATH['public_html/'] . 'siteconfig.php',
1.11 $_PATH['public_html/'] . 'backend/geeklog.rss',
2.1 --- a/public_html/docs/history Sat Nov 07 13:16:38 2009 +0100
2.2 +++ b/public_html/docs/history Sat Nov 07 14:57:12 2009 +0100
2.3 @@ -4,6 +4,8 @@
2.4 ------------
2.5
2.6 Changes since 1.6.1b1:
2.7 +- Fixed wrong path reported in case of a missing 'data' directory (reported by
2.8 + Markus Wollschläger) [Dirk]
2.9 - When a plugin returns 0 items for the Admins Block, don't display that as
2.10 'N/A' (bug #0001025) [Dirk]
2.11 - Fixed a bug in the Group Editor that didn't let you add groups to other groups