Author: Tobias Schlitt
Date: 2006-01-27 15:20:24 +0100 (Fri, 27 Jan 2006)
New Revision: 2067
Log:
- Fix tag/attribute naming mix.
Modified:
packages/Cache/trunk/docs/tutorial_example_03.php
Modified: packages/Cache/trunk/docs/tutorial_example_03.php
===================================================================
--- packages/Cache/trunk/docs/tutorial_example_03.php 2006-01-27 14:14:30 UTC
(rev 2066)
+++ packages/Cache/trunk/docs/tutorial_example_03.php 2006-01-27 14:20:24 UTC
(rev 2067)
@@ -25,21 +25,21 @@
}
}
-echo "Data items with tag <section> set to <articles>: " .
+echo "Data items with attribute <section> set to <articles>: " .
$cache->countDataItems( null, array( 'section' => 'articles' ) ) .
"\n";
-echo "Data items with tag <language> set to <de>: " .
+echo "Data items with attribute <language> set to <de>: " .
$cache->countDataItems( null, array( 'language' => 'de' ) ) .
"\n\n";
$cache->delete( null, array( 'language' => 'de' ) );
-echo "Data items with tag <section> set to <articles>: " .
+echo "Data items with attribute <section> set to <articles>: " .
$cache->countDataItems( null, array( 'section' => 'articles' ) ) .
"\n";
-echo "Data items with tag <language> set to <de>: " .
+echo "Data items with attribute <language> set to <de>: " .
$cache->countDataItems( null, array( 'language' => 'de' ) ) .
"\n\n";
--
svn-components mailing list
[email protected]
http://lists.ez.no/mailman/listinfo/svn-components