From: bradymiller Date: Tue, 30 Apr 2013 03:48:19 +0000 (-0700) Subject: Additional mods to previous commit (still discussing UTF8 enforcing) X-Git-Tag: whats-been-changed~329 X-Git-Url: https://repo.or.cz/w/openemr.git/commitdiff_plain/fc1bdd3ecef463f94f9d760317d2e46297925fe1 Additional mods to previous commit (still discussing UTF8 enforcing) --- diff --git a/contrib/util/language_translations/buildLanguageDatabase.pl b/contrib/util/language_translations/buildLanguageDatabase.pl index bb51ce87e..7589b58d7 100644 --- a/contrib/util/language_translations/buildLanguageDatabase.pl +++ b/contrib/util/language_translations/buildLanguageDatabase.pl @@ -1,14 +1,15 @@ #!/usr/bin/perl # +# Copyright (C) 2009-2013 Brady Miller +# # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # -# author Brady Miller -# email brady@sparmy.com -# date 04/03/09 -# +# Author Brady Miller +# Author Ramin Moshiri +# # This is a perl script that will build the language translation sql # dumpfiles from the tab delimited language translation spreadsheet. # It will create two output dumpfiles: @@ -549,7 +550,7 @@ CREATE TABLE `lang_definitions` ( `def_id` int(11) NOT NULL auto_increment, `cons_id` int(11) NOT NULL default '0', `lang_id` int(11) NOT NULL default '0', - `definition` mediumtext CHARACTER SET utf8, + `definition` mediumtext, UNIQUE KEY `def_id` (`def_id`), KEY `cons_id` (`cons_id`) ) ENGINE=MyISAM AUTO_INCREMENT=".$tempCounter." ;