- use preferred lowercase define() in PHP generation
authorMark Huang <mlhuang@cs.princeton.edu>
Tue, 4 Apr 2006 22:09:25 +0000 (22:09 +0000)
committerMark Huang <mlhuang@cs.princeton.edu>
Tue, 4 Apr 2006 22:09:25 +0000 (22:09 +0000)
plc_config.py

index b3ae90d..91dbee1 100644 (file)
@@ -7,7 +7,7 @@
 # Mark Huang <mlhuang@cs.princeton.edu>
 # Copyright (C) 2006 The Trustees of Princeton University
 #
-# $Id$
+# $Id: plc_config.py,v 1.1.1.1 2006/03/27 17:36:46 mlhuang Exp $
 #
 
 import xml.dom.minidom
@@ -675,7 +675,7 @@ DO NOT EDIT. This file was automatically generated at
                     buf.writelines(["// " + line + os.linesep for line in comments])
                 if value is None:
                     value = 'NULL'
-                buf.write("DEFINE('%s', %s);" % (id, value) + os.linesep)
+                buf.write("define('%s', %s);" % (id, value) + os.linesep)
 
         buf.write("?>" + os.linesep)