[Easymod-cvs] easymod2/mods/easymod easymod_display_functions.php,1.6,1.7
Status: Beta
Brought to you by:
wgeric
From: Eric F. <wg...@us...> - 2005-05-18 22:12:28
|
Update of /cvsroot/easymod/easymod2/mods/easymod In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17871/mods/easymod Modified Files: easymod_display_functions.php Log Message: - Changed line endings, I'll be using Linux now so I can't use Window's line endings. Change it if you notice it isn't Linux. - Fixed bug, http://area51.phpbb.com/phpBB/viewtopic.php?sid=&f=22&t=19845 Index: easymod_display_functions.php =================================================================== RCS file: /cvsroot/easymod/easymod2/mods/easymod/easymod_display_functions.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** easymod_display_functions.php 6 May 2005 21:24:10 -0000 1.6 --- easymod_display_functions.php 18 May 2005 22:12:16 -0000 1.7 *************** *** 472,480 **** // check for server unlink access $access['unlink_access'] = check_access_unlink( $access_msg) ; ! $variables['ACCESS_UNLINK'] = ($access['copy_access']) ? $ok_msg : $no_msg ; // check for server mkdir access $access['mkdir_access'] = check_access_mkdir( $access_msg) ; ! $variables['ACCESS_MKDIR'] = ($access['copy_access']) ? $ok_msg : $no_msg ; } --- 472,480 ---- // check for server unlink access $access['unlink_access'] = check_access_unlink( $access_msg) ; ! $variables['ACCESS_UNLINK'] = ($access['unlink_access']) ? $ok_msg : $no_msg ; // check for server mkdir access $access['mkdir_access'] = check_access_mkdir( $access_msg) ; ! $variables['ACCESS_MKDIR'] = ($access['mkdir_access']) ? $ok_msg : $no_msg ; } |