Author: ts
Date: Wed Jan  9 22:06:30 2008
New Revision: 7118

Log:
- Fixed issue #12364: /ezc/trunk/ConsoleTools/docs/example_table.php base
  value exception.

Modified:
    stable/ConsoleTools/1.3/ChangeLog
    stable/ConsoleTools/1.3/docs/example_table.php
    trunk/ConsoleTools/ChangeLog
    trunk/ConsoleTools/docs/example_table.php

Modified: stable/ConsoleTools/1.3/ChangeLog
==============================================================================
--- stable/ConsoleTools/1.3/ChangeLog [iso-8859-1] (original)
+++ stable/ConsoleTools/1.3/ChangeLog [iso-8859-1] Wed Jan  9 22:06:30 2008
@@ -4,6 +4,8 @@
 - Fixed issue #11435: ConsoleInput does not reset $option->value;. The newly
   added reset() method can in addtion be used to manually reset all option and
   argument values.
+- Fixed issue #12364: /ezc/trunk/ConsoleTools/docs/example_table.php base
+  value exception.
 
 
 1.3.1 - Wednesday 28 November 2007

Modified: stable/ConsoleTools/1.3/docs/example_table.php
==============================================================================
--- stable/ConsoleTools/1.3/docs/example_table.php [iso-8859-1] (original)
+++ stable/ConsoleTools/1.3/docs/example_table.php [iso-8859-1] Wed Jan  9 
22:06:30 2008
@@ -46,7 +46,7 @@
 foreach ( $data as $value )
 {
      // Create a new row each time and set it's contents to the actual value
-     $table[][0]->content = $value;
+     $table[][0]->content = "$value";
 }
 
 // Set another border format for our headline row

Modified: trunk/ConsoleTools/ChangeLog
==============================================================================
--- trunk/ConsoleTools/ChangeLog [iso-8859-1] (original)
+++ trunk/ConsoleTools/ChangeLog [iso-8859-1] Wed Jan  9 22:06:30 2008
@@ -13,6 +13,8 @@
 - Fixed issue #11435: ConsoleInput does not reset $option->value;. The newly
   added reset() method can in addtion be used to manually reset all option and
   argument values.
+- Fixed issue #12364: /ezc/trunk/ConsoleTools/docs/example_table.php base
+  value exception.
 
 1.3.1 - Wednesday 28 November 2007
 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Modified: trunk/ConsoleTools/docs/example_table.php
==============================================================================
--- trunk/ConsoleTools/docs/example_table.php [iso-8859-1] (original)
+++ trunk/ConsoleTools/docs/example_table.php [iso-8859-1] Wed Jan  9 22:06:30 
2008
@@ -46,7 +46,7 @@
 foreach ( $data as $value )
 {
      // Create a new row each time and set it's contents to the actual value
-     $table[][0]->content = $value;
+     $table[][0]->content = "$value";
 }
 
 // Set another border format for our headline row


-- 
svn-components mailing list
svn-components@lists.ez.no
http://lists.ez.no/mailman/listinfo/svn-components

Reply via email to