Changeset 231 for trunk/include


Ignore:
Timestamp:
Nov 3, 2003, 11:39:53 PM (21 years ago)
Author:
z0rglub
Message:

define( CONSTANT, 'value' ) becomes define( "CONSTANT", 'value')

Location:
trunk/include
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/functions.inc.php

    r141 r231  
    319319{
    320320  include( PREFIX_INCLUDE.'./include/mysql.inc.php' );
    321   define( PREFIX_TABLE, $prefixeTable );
     321  define( "PREFIX_TABLE", $prefixeTable );
    322322
    323323  @mysql_connect( $cfgHote, $cfgUser, $cfgPassword )
  • trunk/include/functions_xml.inc.php

    r57 r231  
    1919
    2020//------------------------------------------------------------------ constantes
    21 define( ATT_REG, '\w+' );
    22 define( VAL_REG, '[^"]*' );
     21define( "ATT_REG", '\w+' );
     22define( "VAL_REG", '[^"]*' );
    2323//------------------------------------------------------------------- functions
    2424// getContent returns the content of a tag
  • trunk/include/init.inc.php

    r57 r231  
    1717 *                                                                         *
    1818 ***************************************************************************/
    19 define( PREFIX_INCLUDE, '' );
     19define( "PREFIX_INCLUDE", '' );
    2020
    2121include_once( './include/config.inc.php' );
Note: See TracChangeset for help on using the changeset viewer.