From 59ff1d7a5711c6f9fd14de5aa846dea0669732d1 Mon Sep 17 00:00:00 2001 From: Dominique Fournier Date: Wed, 24 May 2017 11:56:00 +0000 Subject: [PATCH] modelGenerator: manage correctely the carriage-returns git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@3728 bf3deb0d-5f1a-0410-827f-c0cc1f45334c --- tools/modelGenerator.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/modelGenerator.php b/tools/modelGenerator.php index 3ca52dc..a712c1f 100755 --- a/tools/modelGenerator.php +++ b/tools/modelGenerator.php @@ -138,8 +138,9 @@ class modelGenerator else $f .= " array (\"$unique\"),\n"; } - $f .= " ));\n\n"; + $f .= " ));\n"; } + $f .= "\n"; $f .= " // The titles\n"; $f .= " \$this->titles = array (\n"; foreach ($schema["fields"] as $field=>$params)