phpslash-commit Mailing List for phpSlash (Page 53)
Brought to you by:
joestewart,
nhruby
This list is closed, nobody may subscribe to it.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(11) |
Nov
(59) |
Dec
(60) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(52) |
Feb
(77) |
Mar
(118) |
Apr
(76) |
May
(106) |
Jun
(145) |
Jul
(9) |
Aug
(15) |
Sep
(78) |
Oct
(83) |
Nov
(105) |
Dec
(51) |
2003 |
Jan
(105) |
Feb
(100) |
Mar
(111) |
Apr
(149) |
May
(95) |
Jun
(56) |
Jul
(8) |
Aug
(2) |
Sep
|
Oct
(22) |
Nov
(117) |
Dec
(6) |
2004 |
Jan
(1) |
Feb
|
Mar
(3) |
Apr
(25) |
May
|
Jun
(11) |
Jul
(26) |
Aug
(85) |
Sep
(119) |
Oct
(312) |
Nov
(271) |
Dec
(5) |
2005 |
Jan
(6) |
Feb
|
Mar
|
Apr
(12) |
May
(7) |
Jun
(8) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2009 |
Jan
(5) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Joe S. <joe...@us...> - 2003-04-11 16:06:18
|
Update of /cvsroot/phpslash/phpslash-ft/doc/html In directory sc8-pr-cvs1:/tmp/cvs-serv17315/phpslash-ft/doc/html Modified Files: phpslash.sgml Log Message: extractStories accepts order argument correctly. Index: phpslash.sgml =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/doc/html/phpslash.sgml,v retrieving revision 1.72 retrieving revision 1.73 diff -C2 -d -r1.72 -r1.73 *** phpslash.sgml 10 Apr 2003 15:30:55 -0000 1.72 --- phpslash.sgml 11 Apr 2003 16:06:12 -0000 1.73 *************** *** 969,973 **** loginblock.tpl loginformCR.tpl ! searchPage.tpl </code></tscreen> --- 969,974 ---- loginblock.tpl loginformCR.tpl ! searchPage.tpl ! storyList.tpl </code></tscreen> |
From: Joe S. <joe...@us...> - 2003-04-10 18:51:16
|
Update of /cvsroot/phpslash/phpslash-ft/class In directory sc8-pr-cvs1:/tmp/cvs-serv25564/phpslash-ft/class Modified Files: slashTemplate.class Log Message: support header and footer in index templates. Index: slashTemplate.class =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/class/slashTemplate.class,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** slashTemplate.class 10 Apr 2003 18:34:14 -0000 1.7 --- slashTemplate.class 10 Apr 2003 18:51:12 -0000 1.8 *************** *** 145,148 **** --- 145,158 ---- } + + /** + * is_available + * + * Check the contents of the template ($var) for the + * + * @access public + * @param string var + * @param string placeholder + **/ function is_available($var, $placeholder) { $status = false; |
From: Joe S. <joe...@us...> - 2003-04-10 18:34:20
|
Update of /cvsroot/phpslash/phpslash-ft/class In directory sc8-pr-cvs1:/tmp/cvs-serv13222/phpslash-ft/class Modified Files: slashTemplate.class Log Message: support header and footer in index templates. Index: slashTemplate.class =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/class/slashTemplate.class,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** slashTemplate.class 11 Mar 2003 22:09:03 -0000 1.6 --- slashTemplate.class 10 Apr 2003 18:34:14 -0000 1.7 *************** *** 145,148 **** --- 145,159 ---- } + function is_available($var, $placeholder) { + $status = false; + $str = ' '.$this->get_var($var); + if( strpos($str,"{".$placeholder."}") > 1) { + //found + $status = true; + } + + return $status; + } + } // end of slashTemplate class |
From: Joe S. <joe...@us...> - 2003-04-10 18:33:31
|
Update of /cvsroot/phpslash/phpslash-ft/public_html In directory sc8-pr-cvs1:/tmp/cvs-serv12582/phpslash-ft/public_html Modified Files: index.php3 Log Message: support header and footer in index templates. Index: index.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/index.php3,v retrieving revision 1.66 retrieving revision 1.67 diff -C2 -d -r1.66 -r1.67 *** index.php3 4 Mar 2003 21:54:29 -0000 1.66 --- index.php3 10 Apr 2003 18:33:26 -0000 1.67 *************** *** 2,65 **** // $Id$ require('config.php3'); ! $pagetitle = pslgetText('Home'); // The name to be displayed in the header ! $xsiteobject = pslgetText('Home Page'); // This Defines The META Tag Object Type ! if(!empty($HTTP_GET_VARS['login'])) { $auth->login_if($HTTP_GET_VARS['login']); } // Objects - - // $poll = pslNew("Poll"); $story = pslNew("Story"); $block = pslNew("Block_i"); - // $db = pslNew("slashDB"); // Start of Page $breadcrumb = breadcrumb($ary); $_PSL['metatags']['object'] = $xsiteobject; ! slashhead($pagetitle,$_PSL['metatags']); $allstories = $story->getStories($ary); $leftblocks = $block->getBlocks($ary, "left"); $centerblocks = $block->getBlocks($ary, "center"); $rightblocks = $block->getBlocks($ary, "right"); if (empty($leftblocks)) { if (empty($rightblocks)) { ! // $centerblocks = $block->getBlocks($ary); ! // $tplfile = "index1col.tpl"; ! // default to 2 column for transparent upgrade ! $rightblocks = $block->getBlocks($ary); ! $tplfile = 'index2colright.tpl'; } else { ! $tplfile = 'index2colright.tpl'; } } elseif (empty($rightblocks)) { $tplfile = 'index2colleft.tpl'; } else { $tplfile = 'index3col.tpl'; } ! $template = pslNew("slashTemplate",$_PSL['templatedir']); $template->debug = 0; ! $template->set_file(array( ! 'index' => $tplfile //"index3col.tpl" ! )); ! ! if( !empty($_SERVER['QUERY_STRING'])) { ! $QUERY_STRING = '?'.$_SERVER['QUERY_STRING']; ! } else { ! $QUERY_STRING = ''; ! } $template->set_var(array( 'SKIN' => $_PSL['skin'], ! 'QUERYSTRING' => $QUERY_STRING, 'ROOTDIR' => $_PSL['rooturl'], 'IMAGEDIR' => $_PSL['imageurl'], --- 2,77 ---- // $Id$ + // bring in configuration variables require('config.php3'); ! $pagetitle = pslgetText('Home'); // The name to be displayed in the header ! $xsiteobject = pslgetText('Home Page'); // This Defines The META Tag Object Type ! // login form if requested ! if(array_key_exists('login',$HTTP_GET_VARS)) { $auth->login_if($HTTP_GET_VARS['login']); } // Objects $story = pslNew("Story"); $block = pslNew("Block_i"); // Start of Page + $output = ''; + // setup variables to be displayed $breadcrumb = breadcrumb($ary); $_PSL['metatags']['object'] = $xsiteobject; ! // get page header and footer ! $header = getHeader($pagetitle,$_PSL['metatags']); ! $footer = getFooter(); + // get the stories for this page $allstories = $story->getStories($ary); + + // get the blocks for each column $leftblocks = $block->getBlocks($ary, "left"); $centerblocks = $block->getBlocks($ary, "center"); $rightblocks = $block->getBlocks($ary, "right"); + if( array_key_exists('QUERY_STRING',$_SERVER)) { + $query_string = '?'.$_SERVER['QUERY_STRING']; + } else { + $query_string = ''; + } + + // determine which index*.tpl file will be used. if (empty($leftblocks)) { + // no leftblocks if (empty($rightblocks)) { ! // no right blocks either - use single column index page. ! $tplfile = "index1col.tpl"; } else { ! // no left blocks but has right blocks - use 2 column ! // with blocks on right side. ! $tplfile = 'index2colright.tpl'; } } elseif (empty($rightblocks)) { + // left blocks but no right blocks - use 2 column + // with blocks on left side. $tplfile = 'index2colleft.tpl'; } else { + // left and right blocks - use 3 column index page. $tplfile = 'index3col.tpl'; } ! // create template object and set the template file ! $template = pslNew("slashTemplate"); $template->debug = 0; ! $template->set_file( 'index', $tplfile); + // parse these template variables for display. $template->set_var(array( + 'HEADER' => $header, + 'FOOTER' => $footer, 'SKIN' => $_PSL['skin'], ! 'QUERYSTRING' => $query_string, 'ROOTDIR' => $_PSL['rooturl'], 'IMAGEDIR' => $_PSL['imageurl'], *************** *** 71,78 **** )); ! $template->parse('OUT','index'); ! $template->p('OUT'); - slashfoot(); page_close(); ?> --- 83,102 ---- )); ! // add page output to be displayed ! $output .= $template->parse('OUT','index'); ! ! // add header if not parsed above in index page template ! if( !$template->is_available('index','HEADER')) { ! $output = $header . $output; ! } ! ! // add footer if not parsed above in index page template ! if( !$template->is_available('index','FOOTER')) { ! $output .= $footer; ! } ! ! // display the page ! echo $output; page_close(); ?> |
From: Joe S. <joe...@us...> - 2003-04-10 18:33:30
|
Update of /cvsroot/phpslash/phpslash-ft In directory sc8-pr-cvs1:/tmp/cvs-serv12582/phpslash-ft Modified Files: CHANGES Log Message: support header and footer in index templates. Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/CHANGES,v retrieving revision 1.752 retrieving revision 1.753 diff -C2 -d -r1.752 -r1.753 *** CHANGES 10 Apr 2003 15:31:13 -0000 1.752 --- CHANGES 10 Apr 2003 18:33:24 -0000 1.753 *************** *** 13,16 **** --- 13,21 ---- 9 - Removal of something (kill -9 :) + 2003-April 10 1:30PM CDT Joe Stewart <joe...@us...> + [F] - slashTemplate.class - new method is_available. Check a template + for a placeholder's existence. + index.php3 - support header and footer in index templates. + 2003-April 10 10:00AM CDT Joe Stewart <joe...@us...> [B] - slashAuthCR.class, login.php3, loginblock.tpl - cleanup of challenge |
From: Joe S. <joe...@us...> - 2003-04-10 15:31:25
|
Update of /cvsroot/phpslash/phpslash-ft In directory sc8-pr-cvs1:/tmp/cvs-serv24583/phpslash-ft Modified Files: CHANGES Log Message: cleanup of challenge generation and validation. Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/CHANGES,v retrieving revision 1.751 retrieving revision 1.752 diff -C2 -d -r1.751 -r1.752 *** CHANGES 9 Apr 2003 20:09:01 -0000 1.751 --- CHANGES 10 Apr 2003 15:31:13 -0000 1.752 *************** *** 13,16 **** --- 13,20 ---- 9 - Removal of something (kill -9 :) + 2003-April 10 10:00AM CDT Joe Stewart <joe...@us...> + [B] - slashAuthCR.class, login.php3, loginblock.tpl - cleanup of challenge + generation and validation. + 2003-April 9 3:00PM CDT Joe Stewart <joe...@us...> [W] - search.php3, Comment.class - reduce php warnings. |
From: Joe S. <joe...@us...> - 2003-04-10 15:31:05
|
Update of /cvsroot/phpslash/phpslash-ft/doc/html In directory sc8-pr-cvs1:/tmp/cvs-serv24411/phpslash-ft/doc/html Modified Files: phpslash.sgml Log Message: cleanup of challenge generation and validation. Index: phpslash.sgml =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/doc/html/phpslash.sgml,v retrieving revision 1.71 retrieving revision 1.72 diff -C2 -d -r1.71 -r1.72 *** phpslash.sgml 9 Apr 2003 16:01:05 -0000 1.71 --- phpslash.sgml 10 Apr 2003 15:30:55 -0000 1.72 *************** *** 967,971 **** <tscreen><code> fmblock.tpl ! lobingblock.tpl loginformCR.tpl searchPage.tpl --- 967,971 ---- <tscreen><code> fmblock.tpl ! loginblock.tpl loginformCR.tpl searchPage.tpl |
From: Joe S. <joe...@us...> - 2003-04-10 15:30:05
|
Update of /cvsroot/phpslash/phpslash-ft/public_html/templates/en/basic In directory sc8-pr-cvs1:/tmp/cvs-serv23991a/phpslash-ft/public_html/templates/en/basic Modified Files: loginblock.tpl Log Message: cleanup of challenge generation and validation. Index: loginblock.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/templates/en/basic/loginblock.tpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** loginblock.tpl 9 Apr 2003 16:01:07 -0000 1.2 --- loginblock.tpl 10 Apr 2003 15:30:00 -0000 1.3 *************** *** 37,40 **** --- 37,41 ---- <input type="hidden" name="challenge" value="{CHALLENGE}"> <input type="hidden" name="response" value=""> + <input type="hidden" name="loginform" value="true"> </form> *************** *** 43,46 **** --- 44,48 ---- <input type="hidden" name="challenge" value="{CHALLENGE}"> <input type="hidden" name="response" value=""> + <input type="hidden" name="loginform" value="true"> </form> <script language="JavaScript"> |
From: Joe S. <joe...@us...> - 2003-04-10 15:30:05
|
Update of /cvsroot/phpslash/phpslash-ft/public_html/templates/en/default In directory sc8-pr-cvs1:/tmp/cvs-serv23991a/phpslash-ft/public_html/templates/en/default Modified Files: loginblock.tpl Log Message: cleanup of challenge generation and validation. Index: loginblock.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/templates/en/default/loginblock.tpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** loginblock.tpl 9 Apr 2003 16:01:08 -0000 1.2 --- loginblock.tpl 10 Apr 2003 15:30:00 -0000 1.3 *************** *** 37,40 **** --- 37,41 ---- <input type="hidden" name="challenge" value="{CHALLENGE}"> <input type="hidden" name="response" value=""> + <input type="hidden" name="loginform" value="true"> </form> *************** *** 43,46 **** --- 44,48 ---- <input type="hidden" name="challenge" value="{CHALLENGE}"> <input type="hidden" name="response" value=""> + <input type="hidden" name="loginform" value="true"> </form> <script language="JavaScript"> |
From: Joe S. <joe...@us...> - 2003-04-10 15:30:05
|
Update of /cvsroot/phpslash/phpslash-ft/class In directory sc8-pr-cvs1:/tmp/cvs-serv23991a/phpslash-ft/class Modified Files: slashAuthCR.class Log Message: cleanup of challenge generation and validation. Index: slashAuthCR.class =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/class/slashAuthCR.class,v retrieving revision 1.49 retrieving revision 1.50 diff -C2 -d -r1.49 -r1.50 *** slashAuthCR.class 9 Apr 2003 14:48:09 -0000 1.49 --- slashAuthCR.class 10 Apr 2003 15:29:59 -0000 1.50 *************** *** 93,97 **** $sess->register("saved_get"); ! if(!isset($challenge)) { $challenge = md5(uniqid($this->magic)); $sess->register("challenge"); --- 93,97 ---- $sess->register("saved_get"); ! if(empty($challenge)) { $challenge = md5(uniqid($this->magic)); $sess->register("challenge"); *************** *** 283,287 **** // TODO: Change there so they aren't undefined indexes :) $username = $HTTP_POST_VARS['username']; ! $password = $HTTP_POST_VARS['password']; // $challenge = $HTTP_POST_VARS['challenge']; // use session variable $response = $HTTP_POST_VARS['response']; --- 283,290 ---- // TODO: Change there so they aren't undefined indexes :) $username = $HTTP_POST_VARS['username']; ! $password = ''; ! if(array_key_exists('password', $HTTP_POST_VARS)) { ! $password = $HTTP_POST_VARS['password']; ! } // $challenge = $HTTP_POST_VARS['challenge']; // use session variable $response = $HTTP_POST_VARS['response']; *************** *** 292,303 **** $lostpw = $HTTP_POST_VARS['lostpw']; } ! ! /* if(empty($HTTP_POST_VARS['challenge'])) { return false; } ! */ ! if($challenge != $HTTP_POST_VARS['challenge']) { return false; } --- 295,308 ---- $lostpw = $HTTP_POST_VARS['lostpw']; } ! ! // missing challenge - shouldn't happen if(empty($HTTP_POST_VARS['challenge'])) { + // $this->auth["error"] = "debug only - missing challenge"; return false; } ! ! // old loginforms expire if($challenge != $HTTP_POST_VARS['challenge']) { + // $this->auth["error"] = "debug only - wrong challenge"; return false; } |
From: Joe S. <joe...@us...> - 2003-04-09 20:09:40
|
Update of /cvsroot/phpslash/phpslash-ft In directory sc8-pr-cvs1:/tmp/cvs-serv16567/phpslash-ft Modified Files: CHANGES Log Message: reduce php warnings. Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/CHANGES,v retrieving revision 1.750 retrieving revision 1.751 diff -C2 -d -r1.750 -r1.751 *** CHANGES 9 Apr 2003 19:18:35 -0000 1.750 --- CHANGES 9 Apr 2003 20:09:01 -0000 1.751 *************** *** 13,16 **** --- 13,19 ---- 9 - Removal of something (kill -9 :) + 2003-April 9 3:00PM CDT Joe Stewart <joe...@us...> + [W] - search.php3, Comment.class - reduce php warnings. + 2003-April 9 2:00PM CDT Joe Stewart <joe...@us...> [W] - Block.class, Block_admin.class, blockAdmin.php3 - reduce php warnings. |
From: Joe S. <joe...@us...> - 2003-04-09 20:09:12
|
Update of /cvsroot/phpslash/phpslash-ft/public_html In directory sc8-pr-cvs1:/tmp/cvs-serv16567/phpslash-ft/public_html Modified Files: search.php3 Log Message: reduce php warnings. Index: search.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/search.php3,v retrieving revision 1.56 retrieving revision 1.57 diff -C2 -d -r1.56 -r1.57 *** search.php3 3 Apr 2003 20:08:46 -0000 1.56 --- search.php3 9 Apr 2003 20:09:06 -0000 1.57 *************** *** 14,18 **** $maxsearchresults = $_PSL['search_maxresults']; ! if ($HTTP_GET_VARS['use_comments'] == 'on' && $_PSL['allow_comment_search']) { $search_comments = TRUE; } else { --- 14,18 ---- $maxsearchresults = $_PSL['search_maxresults']; ! if (array_key_exists('use_comments', $HTTP_GET_VARS) && $_PSL['allow_comment_search']) { $search_comments = TRUE; } else { *************** *** 37,40 **** --- 37,41 ---- global $topic_image_width; global $topic_image_height; + global $topic_alttext; $db = pslNew("slashDB"); *************** *** 46,50 **** image, width, ! height FROM psl_topic WHERE topic_id = '$topic_image_id'"; --- 47,52 ---- image, width, ! height, ! alt_text FROM psl_topic WHERE topic_id = '$topic_image_id'"; *************** *** 54,57 **** --- 56,60 ---- $topic_image_width = $db->f('width'); $topic_image_height = $db->f('height'); + $topic_alttext = $db->f('alt_text'); return ""; *************** *** 64,68 **** image, width, ! height FROM psl_topic WHERE topic_name = '$name'"; --- 67,72 ---- image, width, ! height, ! alt_text FROM psl_topic WHERE topic_name = '$name'"; *************** *** 72,75 **** --- 76,80 ---- $topic_image_width = $db->f('width'); $topic_image_height = $db->f('height'); + $topic_alttext = $db->f('alt_text'); return $db->f('topic_id'); } *************** *** 81,85 **** image, width, ! height FROM psl_topic WHERE topic_id = '$id'"; --- 86,91 ---- image, width, ! height, ! alt_text FROM psl_topic WHERE topic_id = '$id'"; *************** *** 89,92 **** --- 95,99 ---- $topic_image_width = $db->f('width'); $topic_image_height = $db->f('height'); + $topic_alttext = $db->f('alt_text'); return $db->f('topic_id'); } *************** *** 132,135 **** --- 139,173 ---- } + // initialize missing array fields + + if(!array_key_exists('topic_id', $ary)) { + $ary['topic_id'] = ''; + } + + if(!array_key_exists('topic_name', $ary)) { + $ary['topic_name'] = ''; + } + + if(!array_key_exists('section_id', $ary)) { + $ary['section_id'] = ''; + } + + if(!array_key_exists('section_name', $ary)) { + $ary['section_name'] = ''; + } + + if(!array_key_exists('author_id', $ary)) { + $ary['author_id'] = ''; + } + + if(!array_key_exists('author_name', $ary)) { + $ary['author_name'] = ''; + } + + if(!array_key_exists('query', $ary)) { + $ary['query'] = ''; + } + + $search_topic_id = getTopicID($ary['topic_id'], $ary['topic_name']); $search_section_id = getSectionID($ary['section_id'], $ary['section_name']); *************** *** 156,160 **** $ary['section'] = $section; } else { ! $pagetitle .= $ary['section']; } --- 194,200 ---- $ary['section'] = $section; } else { ! if(array_key_exists('section', $ary)) { ! $pagetitle .= $ary['section']; ! } } *************** *** 168,172 **** /* Templates */ ! $templ = pslNew("slashTemplate" ,$_PSL[templatedir]); $templ->debug = false; $templ->set_file ("searchpage", "searchPage.tpl"); --- 208,212 ---- /* Templates */ ! $templ = pslNew("slashTemplate"); $templ->debug = false; $templ->set_file ("searchpage", "searchPage.tpl"); *************** *** 295,299 **** /* print matches */ ! if ($ary['min'] == "") { $ary['min'] = 0; } --- 335,339 ---- /* print matches */ ! if (!array_key_exists('min', $ary)) { $ary['min'] = 0; } *************** *** 484,490 **** )); if( !empty($_SERVER['QUERY_STRING'])) { $QUERY_STRING = "?".$_SERVER['QUERY_STRING']; ! } $template->set_var(array( --- 524,531 ---- )); + $QUERY_STRING = ''; if( !empty($_SERVER['QUERY_STRING'])) { $QUERY_STRING = "?".$_SERVER['QUERY_STRING']; ! } $template->set_var(array( |
From: Joe S. <joe...@us...> - 2003-04-09 20:09:12
|
Update of /cvsroot/phpslash/phpslash-ft/class In directory sc8-pr-cvs1:/tmp/cvs-serv16567/phpslash-ft/class Modified Files: Comment.class Log Message: reduce php warnings. Index: Comment.class =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/class/Comment.class,v retrieving revision 1.44 retrieving revision 1.45 diff -C2 -d -r1.44 -r1.45 *** Comment.class 20 Mar 2003 18:29:06 -0000 1.44 --- Comment.class 9 Apr 2003 20:09:05 -0000 1.45 *************** *** 328,332 **** if ($this->perm->have_perm("comment")) { ! $admin = "<form action=\"" . $this->psl[adminurl] . "/commentAdmin.php3\" method=post> <input type=submit name=action value=\"".pslgetText("Bulk Delete")."\"> <input type=submit name=action value=\"".pslgetText("Show Pending")."\"> --- 328,332 ---- if ($this->perm->have_perm("comment")) { ! $admin = "<form action=\"" . $this->psl['adminurl'] . "/commentAdmin.php3\" method=post> <input type=submit name=action value=\"".pslgetText("Bulk Delete")."\"> <input type=submit name=action value=\"".pslgetText("Show Pending")."\"> |
From: Joe S. <joe...@us...> - 2003-04-09 19:21:06
|
Update of /cvsroot/phpslash/phpslash-ft/class In directory sc8-pr-cvs1:/tmp/cvs-serv28007/phpslash-ft/class Modified Files: Block_render_topic.class Log Message: reduce php warnings. Index: Block_render_topic.class =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/class/Block_render_topic.class,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** Block_render_topic.class 9 Apr 2003 15:07:20 -0000 1.16 --- Block_render_topic.class 9 Apr 2003 19:21:00 -0000 1.17 *************** *** 37,40 **** --- 37,41 ---- $mode = ''; $topic = ''; + $tpl = ''; $default_template = "topicsblock.tpl"; |
From: Joe S. <joe...@us...> - 2003-04-09 19:18:43
|
Update of /cvsroot/phpslash/phpslash-ft/class In directory sc8-pr-cvs1:/tmp/cvs-serv27062/phpslash-ft/class Modified Files: Block.class Log Message: reduce php warnings. Index: Block.class =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/class/Block.class,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -d -r1.28 -r1.29 *** Block.class 9 Apr 2003 18:51:27 -0000 1.28 --- Block.class 9 Apr 2003 19:18:36 -0000 1.29 *************** *** 227,231 **** } // move the section id's from the array value to the array key ! if(is_array($block_array['section_id_ary'])) { foreach($block_array['section_id_ary'] as $value) { $section_id_ary[$value] = true; --- 227,232 ---- } // move the section id's from the array value to the array key ! if(array_key_exists('section_id_ary', $block_array) && ! is_array($block_array['section_id_ary'])) { foreach($block_array['section_id_ary'] as $value) { $section_id_ary[$value] = true; *************** *** 366,370 **** if( (count($section_id_ary) <1) && (count($sections_current) < 1) ){ ! $this->message .= sprintf(pslgetText("No section chosen. Block will not be displayed on site till a section is chosen for block: %s"), $block_array[block_title]); } --- 367,371 ---- if( (count($section_id_ary) <1) && (count($sections_current) < 1) ){ ! $this->message .= sprintf(pslgetText("No section chosen. Block will not be displayed on site till a section is chosen for block: %s"), $block_array['block_title']); } *************** *** 425,430 **** $width = "100%"; ! ! if ($id != $this->block_info["id"]) { # echo "<B>before GetBlock</B><BR>\n"; $this->getBlock($id); --- 426,433 ---- $width = "100%"; ! $box_type = ''; ! ! if (!array_key_exists('id', $this->block_info) || ! ($id != $this->block_info['id']) ) { # echo "<B>before GetBlock</B><BR>\n"; $this->getBlock($id); *************** *** 459,466 **** } if (is_array($this->block_info["block_options"])) { ! if (is_string($this->block_info["block_options"]["width"])) { $width = $this->block_info["block_options"]["width"]; } ! if (is_string($this->block_info["block_options"]["box_type"])) { $box_type = $this->block_info["block_options"]["box_type"]; } --- 462,469 ---- } if (is_array($this->block_info["block_options"])) { ! if (array_key_exists('width', $this->block_info['block_options'])) { $width = $this->block_info["block_options"]["width"]; } ! if (array_key_exists('box_type', $this->block_info['block_options'])) { $box_type = $this->block_info["block_options"]["box_type"]; } |
From: Joe S. <joe...@us...> - 2003-04-09 19:18:43
|
Update of /cvsroot/phpslash/phpslash-ft In directory sc8-pr-cvs1:/tmp/cvs-serv27062/phpslash-ft Modified Files: CHANGES Log Message: reduce php warnings. Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/CHANGES,v retrieving revision 1.749 retrieving revision 1.750 diff -C2 -d -r1.749 -r1.750 *** CHANGES 9 Apr 2003 18:51:27 -0000 1.749 --- CHANGES 9 Apr 2003 19:18:35 -0000 1.750 *************** *** 13,16 **** --- 13,19 ---- 9 - Removal of something (kill -9 :) + 2003-April 9 2:00PM CDT Joe Stewart <joe...@us...> + [W] - Block.class, Block_admin.class, blockAdmin.php3 - reduce php warnings. + 2003-April 9 1:30PM CDT Joe Stewart <joe...@us...> [B] - Block.class - correct erroneous error messages when saving blocks. |
From: Joe S. <joe...@us...> - 2003-04-09 18:51:32
|
Update of /cvsroot/phpslash/phpslash-ft/class In directory sc8-pr-cvs1:/tmp/cvs-serv14100/phpslash-ft/class Modified Files: Block.class Log Message: correct erroneous error messages when saving blocks. Index: Block.class =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/class/Block.class,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** Block.class 27 Mar 2003 15:42:23 -0000 1.27 --- Block.class 9 Apr 2003 18:51:27 -0000 1.28 *************** *** 210,213 **** --- 210,216 ---- function putBlock($block_array) { + // db query error status + $success = true; + if(is_array($block_array)) { *************** *** 261,264 **** --- 264,272 ---- // debug("Block.class::putBlock::query", $query); $this->db->query($query); + + // should update one record successfully + if ($this->db->affected_rows() != "1") { + $success = false; + } // get current sections assigned to block *************** *** 299,302 **** --- 307,315 ---- $this->db->query($query); + // should insert one record successfully + if ($this->db->affected_rows() != "1") { + $success = false; + } + $sections_current = array(); } *************** *** 330,333 **** --- 343,351 ---- '$block_array[block_id]')"; $this->db->query($lut_insert); + + // should insert one section lookup successfully + if ($this->db->affected_rows() != "1") { + $success = false; + } } elseif (!empty($sections_current[$key]) ) { // section available but not chosen - so delete *************** *** 336,339 **** --- 354,362 ---- AND section_id = '$key' "; $this->db->query($lut_delete); + + // should delete one section lookup successfully + if ($this->db->affected_rows() != "1") { + $success = false; + } } *************** *** 347,354 **** $this->message .= pslgetText("Checking db..."); ! if ($this->db->affected_rows() == 1) { // $this->message .= "Here's a preview...<br>\n"; - # $testid = $block_array[block_id]; - # echo "<BR><BR><B>Before DoBlock!! -> $testid</B><BR><BR>\n"; logwrite("Block Addition", "Added block " . $block_array['block_id']); $this->message .= $this->doBlock($block_array["block_id"]); --- 370,377 ---- $this->message .= pslgetText("Checking db..."); ! ! // check if the above db actions were successful ! if ($success == true) { // $this->message .= "Here's a preview...<br>\n"; logwrite("Block Addition", "Added block " . $block_array['block_id']); $this->message .= $this->doBlock($block_array["block_id"]); |
From: Joe S. <joe...@us...> - 2003-04-09 18:51:31
|
Update of /cvsroot/phpslash/phpslash-ft In directory sc8-pr-cvs1:/tmp/cvs-serv14100/phpslash-ft Modified Files: CHANGES Log Message: correct erroneous error messages when saving blocks. Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/CHANGES,v retrieving revision 1.748 retrieving revision 1.749 diff -C2 -d -r1.748 -r1.749 *** CHANGES 9 Apr 2003 16:01:06 -0000 1.748 --- CHANGES 9 Apr 2003 18:51:27 -0000 1.749 *************** *** 13,16 **** --- 13,19 ---- 9 - Removal of something (kill -9 :) + 2003-April 9 1:30PM CDT Joe Stewart <joe...@us...> + [B] - Block.class - correct erroneous error messages when saving blocks. + 2003-April 9 11:00AM CDT Joe Stewart <joe...@us...> [B] - loginformCR.tpl, loginblock.tpl - Change MD5() function call to |
From: Joe S. <joe...@us...> - 2003-04-09 16:01:40
|
Update of /cvsroot/phpslash/phpslash-ft/doc/html In directory sc8-pr-cvs1:/tmp/cvs-serv30448/phpslash-ft/doc/html Modified Files: phpslash.sgml Log Message: MD5 to hex_md5 Index: phpslash.sgml =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/doc/html/phpslash.sgml,v retrieving revision 1.70 retrieving revision 1.71 diff -C2 -d -r1.70 -r1.71 *** phpslash.sgml 27 Mar 2003 18:40:04 -0000 1.70 --- phpslash.sgml 9 Apr 2003 16:01:05 -0000 1.71 *************** *** 967,970 **** --- 967,971 ---- <tscreen><code> fmblock.tpl + lobingblock.tpl loginformCR.tpl searchPage.tpl *************** *** 977,980 **** --- 978,987 ---- <sect2> Troubleshooting + <p> + + <itemize> + <item>If you find yourself troubleshooting a problem, it might be helpful to turn the output cache off temporarily. Change config.php3: $JPCACHE_ON = 0. + + </itemize> <p> |
From: Joe S. <joe...@us...> - 2003-04-09 16:01:11
|
Update of /cvsroot/phpslash/phpslash-ft/public_html/templates/en/default In directory sc8-pr-cvs1:/tmp/cvs-serv30448/phpslash-ft/public_html/templates/en/default Modified Files: loginblock.tpl loginformCR.tpl Log Message: MD5 to hex_md5 Index: loginblock.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/templates/en/default/loginblock.tpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** loginblock.tpl 20 May 2002 17:52:47 -0000 1.1 --- loginblock.tpl 9 Apr 2003 16:01:08 -0000 1.2 *************** *** 3,13 **** <!-- function doChallengeResponse() { ! str = MD5(document.login.username.value + ":" + document.login.password.value) + ":" + document.login.challenge.value; ! document.login.response.value = MD5(str); document.login.password.value = ""; document.logintrue.username.value = document.login.username.value; ! document.logintrue.response.value = MD5(str); document.logintrue.submit(); return false; --- 3,13 ---- <!-- function doChallengeResponse() { ! str = hex_md5(document.login.username.value + ":" + document.login.password.value) + ":" + document.login.challenge.value; ! document.login.response.value = hex_md5(str); document.login.password.value = ""; document.logintrue.username.value = document.login.username.value; ! document.logintrue.response.value = hex_md5(str); document.logintrue.submit(); return false; Index: loginformCR.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/templates/en/default/loginformCR.tpl,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** loginformCR.tpl 21 May 2002 15:02:04 -0000 1.5 --- loginformCR.tpl 9 Apr 2003 16:01:08 -0000 1.6 *************** *** 3,13 **** <!-- function doChallengeResponse() { ! str = MD5(document.login.username.value + ":" + document.login.password.value) + ":" + document.login.challenge.value; ! document.login.response.value = MD5(str); document.login.password.value = ""; document.logintrue.username.value = document.login.username.value; ! document.logintrue.response.value = MD5(str); document.logintrue.setcookie.value = document.login.setcookie.value; document.logintrue.submit(); --- 3,13 ---- <!-- function doChallengeResponse() { ! str = hex_md5(document.login.username.value + ":" + document.login.password.value) + ":" + document.login.challenge.value; ! document.login.response.value = hex_md5(str); document.login.password.value = ""; document.logintrue.username.value = document.login.username.value; ! document.logintrue.response.value = hex_md5(str); document.logintrue.setcookie.value = document.login.setcookie.value; document.logintrue.submit(); |
From: Joe S. <joe...@us...> - 2003-04-09 16:01:11
|
Update of /cvsroot/phpslash/phpslash-ft/public_html/templates/en/basic In directory sc8-pr-cvs1:/tmp/cvs-serv30448/phpslash-ft/public_html/templates/en/basic Modified Files: loginblock.tpl loginformCR.tpl Log Message: MD5 to hex_md5 Index: loginblock.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/templates/en/basic/loginblock.tpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** loginblock.tpl 20 May 2002 17:52:47 -0000 1.1 --- loginblock.tpl 9 Apr 2003 16:01:07 -0000 1.2 *************** *** 3,13 **** <!-- function doChallengeResponse() { ! str = MD5(document.login.username.value + ":" + document.login.password.value) + ":" + document.login.challenge.value; ! document.login.response.value = MD5(str); document.login.password.value = ""; document.logintrue.username.value = document.login.username.value; ! document.logintrue.response.value = MD5(str); document.logintrue.submit(); return false; --- 3,13 ---- <!-- function doChallengeResponse() { ! str = hex_md5(document.login.username.value + ":" + document.login.password.value) + ":" + document.login.challenge.value; ! document.login.response.value = hex_md5(str); document.login.password.value = ""; document.logintrue.username.value = document.login.username.value; ! document.logintrue.response.value = hex_md5(str); document.logintrue.submit(); return false; Index: loginformCR.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/templates/en/basic/loginformCR.tpl,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** loginformCR.tpl 27 Mar 2003 18:33:21 -0000 1.6 --- loginformCR.tpl 9 Apr 2003 16:01:07 -0000 1.7 *************** *** 5,15 **** <!-- function doChallengeResponse() { ! str = MD5(document.login.username.value + ":" + document.login.password.value) + ":" + document.login.challenge.value; ! document.login.response.value = MD5(str); document.login.password.value = ""; document.logintrue.username.value = document.login.username.value; ! document.logintrue.response.value = MD5(str); document.logintrue.setcookie.value = document.login.setcookie.value; document.logintrue.submit(); --- 5,15 ---- <!-- function doChallengeResponse() { ! str = hex_md5(document.login.username.value + ":" + document.login.password.value) + ":" + document.login.challenge.value; ! document.login.response.value = hex_md5(str); document.login.password.value = ""; document.logintrue.username.value = document.login.username.value; ! document.logintrue.response.value = hex_md5(str); document.logintrue.setcookie.value = document.login.setcookie.value; document.logintrue.submit(); |
From: Joe S. <joe...@us...> - 2003-04-09 16:01:10
|
Update of /cvsroot/phpslash/phpslash-ft In directory sc8-pr-cvs1:/tmp/cvs-serv30448/phpslash-ft Modified Files: CHANGES Log Message: MD5 to hex_md5 Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/CHANGES,v retrieving revision 1.747 retrieving revision 1.748 diff -C2 -d -r1.747 -r1.748 *** CHANGES 9 Apr 2003 15:51:58 -0000 1.747 --- CHANGES 9 Apr 2003 16:01:06 -0000 1.748 *************** *** 13,17 **** 9 - Removal of something (kill -9 :) ! 2003-April 9 10:00AM CST Joe Stewart <joe...@us...> [W] - functions.inc - psl_dateTimeLong() and psl_dateTimeShort() return current date/time when called with no argument. clean() supports --- 13,21 ---- 9 - Removal of something (kill -9 :) ! 2003-April 9 11:00AM CDT Joe Stewart <joe...@us...> ! [B] - loginformCR.tpl, loginblock.tpl - Change MD5() function call to ! hex_md5(). ! ! 2003-April 9 10:00AM CDT Joe Stewart <joe...@us...> [W] - functions.inc - psl_dateTimeLong() and psl_dateTimeShort() return current date/time when called with no argument. clean() supports *************** *** 19,27 **** Submission.class - reduce php warnings. ! 2003-April 9 9:00AM CST Joe Stewart <joe...@us...> [W] - Block_render_query.class, Block_render_section.class, Block_render_topic.class, Block_render_url.class - reduce php warnings ! 2003-April 9 9:00AM CST Joe Stewart <joe...@us...> [W] - config-dist.php3, lib.resources.php, tz.class, functions.inc, Story.class, slashAuthCR.class, profile.php3 - reduce php warnings. --- 23,31 ---- Submission.class - reduce php warnings. ! 2003-April 9 9:00AM CDT Joe Stewart <joe...@us...> [W] - Block_render_query.class, Block_render_section.class, Block_render_topic.class, Block_render_url.class - reduce php warnings ! 2003-April 9 9:00AM CDT Joe Stewart <joe...@us...> [W] - config-dist.php3, lib.resources.php, tz.class, functions.inc, Story.class, slashAuthCR.class, profile.php3 - reduce php warnings. |
From: Joe S. <joe...@us...> - 2003-04-09 15:52:35
|
Update of /cvsroot/phpslash/phpslash-ft In directory sc8-pr-cvs1:/tmp/cvs-serv26519/phpslash-ft Modified Files: CHANGES Log Message: reduce php warnings Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/CHANGES,v retrieving revision 1.746 retrieving revision 1.747 diff -C2 -d -r1.746 -r1.747 *** CHANGES 9 Apr 2003 15:07:15 -0000 1.746 --- CHANGES 9 Apr 2003 15:51:58 -0000 1.747 *************** *** 13,16 **** --- 13,22 ---- 9 - Removal of something (kill -9 :) + 2003-April 9 10:00AM CST Joe Stewart <joe...@us...> + [W] - functions.inc - psl_dateTimeLong() and psl_dateTimeShort() return + current date/time when called with no argument. clean() supports + multidimensional arrays ( arrays of arrays). + Submission.class - reduce php warnings. + 2003-April 9 9:00AM CST Joe Stewart <joe...@us...> [W] - Block_render_query.class, Block_render_section.class, |
From: Joe S. <joe...@us...> - 2003-04-09 15:52:06
|
Update of /cvsroot/phpslash/phpslash-ft/class In directory sc8-pr-cvs1:/tmp/cvs-serv26519/phpslash-ft/class Modified Files: Submission.class functions.inc Log Message: reduce php warnings Index: Submission.class =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/class/Submission.class,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** Submission.class 25 Mar 2003 21:36:23 -0000 1.18 --- Submission.class 9 Apr 2003 15:52:00 -0000 1.19 *************** *** 67,72 **** function showSubmission($ary) { $this->templ->set_var(array( ! 'TITLEBAR' => getTitlebar("100%",$ary[subject]), 'TITLE' => stripslashes($ary['subject']), 'INTROTEXT' => stripslashes($ary['story']), --- 67,76 ---- function showSubmission($ary) { + if(!array_key_exists('datef', $ary)) { + $ary['datef'] = psl_dateTimeLong(); + } + $this->templ->set_var(array( ! 'TITLEBAR' => getTitlebar("100%",$ary['subject']), 'TITLE' => stripslashes($ary['subject']), 'INTROTEXT' => stripslashes($ary['story']), *************** *** 165,177 **** $siteowner = $this->psl['site_owner']; $submission_id = ''; ! if(!empty($ary['submission_id'])) { $submission_id = $ary['submission_id']; } ! if (empty($ary['name'])) { $ary['name'] = $submission_name; $ary['email'] = $submission_email; ! }; // should be out of date now. --- 169,193 ---- $siteowner = $this->psl['site_owner']; + if(!is_array($ary)) { + $ary = array(); + } + $submission_id = ''; ! if(array_key_exists('submission_id',$ary)) { $submission_id = $ary['submission_id']; } ! if (!array_key_exists('name',$ary)) { $ary['name'] = $submission_name; $ary['email'] = $submission_email; ! } ! ! if (!array_key_exists('subject',$ary)) { ! $ary['subject'] = ''; ! } ! ! if (!array_key_exists('story',$ary)) { ! $ary['story'] = ''; ! } // should be out of date now. *************** *** 191,197 **** 'STORY' => $ary['story'] )); ! ! $topic_ary = $ary['topic_id_ary']; ! $section_ary = $ary['section_id_ary']; } elseif ($data_source == "database") { /* fetch from DB */ --- 207,218 ---- 'STORY' => $ary['story'] )); ! $topic_ary = ''; ! if(array_key_exists('topic_id_ary', $ary)) { ! $topic_ary = $ary['topic_id_ary']; ! } ! $section_ary = ''; ! if(array_key_exists('section_id_ary', $ary)) { ! $section_ary = $ary['section_id_ary']; ! } } elseif ($data_source == "database") { /* fetch from DB */ *************** *** 256,260 **** )); $this->templ->set_var('SELECTED',""); ! for ($i = 0 ; $i < count($topic_ary) ; $i++) { $array = $topic_ary[$i]; if ($topic_ary[$i] == $this->db->Record['topic_id']) { --- 277,285 ---- )); $this->templ->set_var('SELECTED',""); ! $count = 0; ! if(is_array($topic_ary)) { ! $count = count($topic_ary); ! } ! for ($i = 0 ; $i < $count ; $i++) { $array = $topic_ary[$i]; if ($topic_ary[$i] == $this->db->Record['topic_id']) { *************** *** 277,282 **** )); $this->templ->set_var('SELECTED',""); ! for ($i = 0 ; $i < count($section_ary) ; $i++) { ! if ($section_ary[$i] == $this->db->Record[section_id]) { $this->templ->set_var('SELECTED',"SELECTED"); } --- 302,311 ---- )); $this->templ->set_var('SELECTED',""); ! $count = 0; ! if(is_array($section_ary)) { ! $count = count($section_ary); ! } ! for ($i = 0 ; $i < $count ; $i++) { ! if ($section_ary[$i] == $this->db->Record['section_id']) { $this->templ->set_var('SELECTED',"SELECTED"); } Index: functions.inc =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/class/functions.inc,v retrieving revision 1.140 retrieving revision 1.141 diff -C2 -d -r1.140 -r1.141 *** functions.inc 9 Apr 2003 14:48:09 -0000 1.140 --- functions.inc 9 Apr 2003 15:52:00 -0000 1.141 *************** *** 672,679 **** if (is_array($dirty)) { while( list( $key, $val) = @each( $dirty )) { ! if ($allow_html) { ! $clean[$key] = str_replace("'","'",(stripslashes($val))); } else { ! $clean[$key] = str_replace("'","'",(htmlspecialchars(stripslashes($val)))); } } --- 672,684 ---- if (is_array($dirty)) { while( list( $key, $val) = @each( $dirty )) { ! if(is_array($val)) { ! // recursively call - if array value is itself an array. ! $clean = clean($val, $allow_html); } else { ! if ($allow_html) { ! $clean[$key] = str_replace("'","'",(stripslashes($val))); ! } else { ! $clean[$key] = str_replace("'","'",(htmlspecialchars(stripslashes($val)))); ! } } } *************** *** 1076,1084 **** } ! function psl_dateTimeLong($t) { return psl_strftime('date_time_format_long',$t); } ! function psl_dateTimeShort($t) { return psl_strftime('date_time_format_short',$t); } --- 1081,1089 ---- } ! function psl_dateTimeLong($t=false) { return psl_strftime('date_time_format_long',$t); } ! function psl_dateTimeShort($t=false) { return psl_strftime('date_time_format_short',$t); } |
From: Joe S. <joe...@us...> - 2003-04-09 15:07:52
|
Update of /cvsroot/phpslash/phpslash-ft In directory sc8-pr-cvs1:/tmp/cvs-serv7228/phpslash-ft Modified Files: CHANGES Log Message: reduce php warnings Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/CHANGES,v retrieving revision 1.745 retrieving revision 1.746 diff -C2 -d -r1.745 -r1.746 *** CHANGES 9 Apr 2003 15:04:22 -0000 1.745 --- CHANGES 9 Apr 2003 15:07:15 -0000 1.746 *************** *** 14,17 **** --- 14,21 ---- 2003-April 9 9:00AM CST Joe Stewart <joe...@us...> + [W] - Block_render_query.class, Block_render_section.class, + Block_render_topic.class, Block_render_url.class - reduce php warnings + + 2003-April 9 9:00AM CST Joe Stewart <joe...@us...> [W] - config-dist.php3, lib.resources.php, tz.class, functions.inc, Story.class, slashAuthCR.class, profile.php3 - reduce php warnings. |