[Squalk-cvs] ircbot ircbot.php,1.5,1.6 defines.inc,1.2,NONE
Status: Inactive
Brought to you by:
mkavanagh
|
From: Matthew K. <mka...@us...> - 2005-09-27 21:03:31
|
Update of /cvsroot/squalk/ircbot In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21068 Modified Files: ircbot.php Removed Files: defines.inc Log Message: What the hell did I have this for anyway? Great job, genius, include a file for ONE CONSTANT Index: ircbot.php =================================================================== RCS file: /cvsroot/squalk/ircbot/ircbot.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** ircbot.php 27 Sep 2005 19:29:36 -0000 1.5 --- ircbot.php 27 Sep 2005 21:03:23 -0000 1.6 *************** *** 19,26 **** # $Id$ ! require_once('defines.inc'); ! require_once(LIB_PATH . 'functions.php'); ! require_once(LIB_PATH . 'class_irc_commands.php'); ! require_once(LIB_PATH . 'class_irc.php'); if(!extension_loaded('sockets')) { --- 19,27 ---- # $Id$ ! define('ROOT_PATH', realpath(dirname(__FILE__))); ! ! require_once(ROOT_PATH.'lib/functions.php'); ! require_once(ROOT_PATH.'lib/class_irc_commands.php'); ! require_once(ROOT_PATH.'lib/class_irc.php'); if(!extension_loaded('sockets')) { *************** *** 60,63 **** usleep(100); } ! } ! ?> --- 61,63 ---- usleep(100); } ! } \ No newline at end of file --- defines.inc DELETED --- |