Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Čihař <michal@cihar.com>2017-01-23 17:59:52 +0300
committerMichal Čihař <michal@cihar.com>2017-01-23 17:59:52 +0300
commit75ad097c3612b6815848bcf813c879a1513479ec (patch)
tree5d2a25367c6dae96a0719bf732b1a74d521333e7 /export.php
parentf4023ee74e846328f2a8e744c25f79e618dcc71e (diff)
Replace Util::whichCrlf() with PHP_EOL
It's available since PHP 5.0.2 so it's really time to use it. Signed-off-by: Michal Čihař <michal@cihar.com>
Diffstat (limited to 'export.php')
-rw-r--r--export.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/export.php b/export.php
index 836bf4f8f2..17ec404776 100644
--- a/export.php
+++ b/export.php
@@ -312,7 +312,7 @@ $time_start = time();
if ($what == 'sql') {
$crlf = "\n";
} else {
- $crlf = PMA\libraries\Util::whichCrlf();
+ $crlf = PHP_EOL;
}
$output_kanji_conversion = Encoding::canConvertKanji();