Update of /cvsroot/phpmp/phpMP/includes
In directory sc8-pr-cvs1:/tmp/cvs-serv7815
Modified Files:
functions.php mpcode.php
Log Message:
Fixing this return problem.
Index: functions.php
===================================================================
RCS file: /cvsroot/phpmp/phpMP/includes/functions.php,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -r1.20 -r1.21
*** functions.php 8 Feb 2003 09:16:22 -0000 1.20
--- functions.php 8 Feb 2003 09:31:54 -0000 1.21
***************
*** 1 ****
! <?php
// Defines constants whose contents may be questionable.
// Author: Brian 'Heimidal' Rose
// Accepts: none.
// Returns: none.
function createConstants()
{
( U_DATE_FORMAT != '' ) ? define( "C_DATE_FORMAT", U_DATE_FORMAT ) : define( "C_DATE_FORMAT", C_DEFAULT_DATE_FORMAT );
}
function makeSessionID()
{
//This function will make a session.
}
?>
\ No newline at end of file
--- 1,17 ----
! <?php
!
! // Defines constants whose contents may be questionable.
! // Author: Brian 'Heimidal' Rose
! // Accepts: none.
! // Returns: none.
function createConstants()
! {
! ( U_DATE_FORMAT != '' ) ? define( "C_DATE_FORMAT", U_DATE_FORMAT ) : define( "C_DATE_FORMAT", C_DEFAULT_DATE_FORMAT );
! }
!
!
! function makeSessionID()
! {
!
! }
!
! ?>
Index: mpcode.php
===================================================================
RCS file: /cvsroot/phpmp/phpMP/includes/mpcode.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** mpcode.php 4 Feb 2003 21:43:23 -0000 1.2
--- mpcode.php 8 Feb 2003 09:31:54 -0000 1.3
***************
*** 1 ****
! <?php
// Content parsing functions to be developed here.
// These work similarly to BBCode and the like.
?>
\ No newline at end of file
--- 1,6 ----
! <?php
!
! // Content parsing functions to be developed here.
! // These work similarly to BBCode and the like.
!
! ?>
|