[Phplib-commit] CVS: php-lib-stable/php layout_html.inc,1.3,1.4
Brought to you by:
nhruby,
richardarcher
|
From: Layne W. <lay...@us...> - 2002-08-07 19:31:37
|
Update of /cvsroot/phplib/php-lib-stable/php
In directory usw-pr-cvs1:/tmp/cvs-serv23671/php
Modified Files:
layout_html.inc
Log Message:
Fixed [ #542808 ] nextid()'s lock() in db_mysql.inc
Fixed [ #542811 ] nextid() uses mysql_query
In layout_html.inc removed an overlooked calltime pass by reference;
all other calls to defval() were correct
Index: layout_html.inc
===================================================================
RCS file: /cvsroot/phplib/php-lib-stable/php/layout_html.inc,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** layout_html.inc 19 Mar 2002 22:32:25 -0000 1.3
--- layout_html.inc 7 Aug 2002 19:31:33 -0000 1.4
***************
*** 662,666 ****
$this->defval($BORDER, $this->picture_def['BORDER']);
$this->defval($ALIGN, $this->picture_def['ALIGN']);
! $this->defval(&$HVSPACE, $this->picture_def['HVSPACE']);
$this->defval($ALT, $this->picture_def['ALT']);
--- 662,666 ----
$this->defval($BORDER, $this->picture_def['BORDER']);
$this->defval($ALIGN, $this->picture_def['ALIGN']);
! $this->defval($HVSPACE, $this->picture_def['HVSPACE']);
$this->defval($ALT, $this->picture_def['ALT']);
|