Switch to \n on Mac, as it is reported to be common EOL there now (bug #1577590).

This commit is contained in:
Michal Čihař
2006-10-16 11:56:36 +00:00
parent 491187ed77
commit bf22bc374f
2 changed files with 2 additions and 4 deletions

View File

@@ -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 <lem9@users.sourceforge.net>
* export.php, db_details_export.php: bug #1541189, views are not displayed

View File

@@ -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";