diff --git a/ChangeLog b/ChangeLog index 6c6316306..77f7762c7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -10,6 +10,8 @@ $HeadURL$ Documentation.html, index.php, libraries/common.lib.php: Rename left.php to navigation.php and modify all calls to that. Only config variables are kept as Left*. + * libraries/common.lib.php: Switch to \n on Mac, as it is reported to be + common EOL there now (bug #1577590). 2006-10-14 Marc Delisle * export.php, db_details_export.php: bug #1541189, views are not displayed diff --git a/libraries/common.lib.php b/libraries/common.lib.php index 7fc3a8483..e17d31c5a 100644 --- a/libraries/common.lib.php +++ b/libraries/common.lib.php @@ -1174,10 +1174,6 @@ if (!defined('PMA_MINIMUM_COMMON')) { if (PMA_USR_OS == 'Win') { $the_crlf = "\r\n"; } - // Mac case - elseif (PMA_USR_OS == 'Mac') { - $the_crlf = "\r"; - } // Others else { $the_crlf = "\n";