[geeklog-cvs] geeklog: Filter out MySQL-specific /*!... "commands in comments"...

geeklog-cvs at lists.geeklog.net geeklog-cvs at lists.geeklog.net
Mon Jan 5 05:06:49 EST 2009


details:   http://project.geeklog.net/cgi-bin/hgweb.cgi/rev/5ae4a81df4b2
changeset: 6616:5ae4a81df4b2
user:      Dirk Haun <dirk at haun-online.de>
date:      Wed Dec 31 15:13:02 2008 +0100
description:
Filter out MySQL-specific /*!... "commands in comments" for now

diffstat:

1 file changed, 3 insertions(+), 4 deletions(-)
public_html/admin/install/bigdump.php |    7 +++----

diffs (36 lines):

diff -r 33002d96c8e2 -r 5ae4a81df4b2 public_html/admin/install/bigdump.php
--- a/public_html/admin/install/bigdump.php	Wed Dec 31 13:49:45 2008 +0100
+++ b/public_html/admin/install/bigdump.php	Wed Dec 31 15:13:02 2008 +0100
@@ -2,7 +2,7 @@
 
 /* Reminder: always indent with 4 spaces (no tabs). */
 // +---------------------------------------------------------------------------+
-// | Geeklog 1.5                                                               |
+// | Geeklog 1.6                                                               |
 // +---------------------------------------------------------------------------+
 // | bigdump.php                                                               |
 // |                                                                           |
@@ -29,7 +29,6 @@
 // | Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.           |
 // |                                                                           |
 // +---------------------------------------------------------------------------+
-//
 
 //
 // BigDump ver. 0.29b from 2008-01-19
@@ -68,7 +67,7 @@
 $comment[]='-- ';
 // $comment[]='---';                  // Uncomment this line if using proprietary dump created by outdated mysqldump
 // $comment[]='CREATE DATABASE';      // Uncomment this line if your dump contains create database queries in order to ignore them
-// $comment[]='/*!';                  // Or add your own string to leave out other proprietary things
+$comment[]='/*!';                     // Or add your own string to leave out other proprietary things
 
 // Connection character set should be the same as the dump file character set (utf8, latin1, cp1251, koi8r etc.)
 // See http://dev.mysql.com/doc/refman/5.0/en/charset-charsets.html for the full list
@@ -392,4 +391,4 @@
 
 echo INST_getFooter();
 
-?>
\ No newline at end of file
+?>



More information about the geeklog-cvs mailing list