sander          Thu May 30 08:33:00 2002 EDT

  Modified files:              
    /phpdoc/en/reference/cpdf   reference.xml 
  Log:
  Fix for #17524
  
  
Index: phpdoc/en/reference/cpdf/reference.xml
diff -u phpdoc/en/reference/cpdf/reference.xml:1.5 
phpdoc/en/reference/cpdf/reference.xml:1.6
--- phpdoc/en/reference/cpdf/reference.xml:1.5  Fri Apr 19 11:36:42 2002
+++ phpdoc/en/reference/cpdf/reference.xml      Thu May 30 08:32:59 2002
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.5 $ -->
+<!-- $Revision: 1.6 $ -->
  <reference id="ref.cpdf">
   <title>ClibPDF functions</title>
   <titleabbrev>ClibPDF</titleabbrev>
@@ -114,7 +114,7 @@
   
   /* minute strokes */
   cpdf_setlinewidth($pdf, 2.0);
-  for ($alpha = 0; $alpha &lt; 360; $alpha += 6)
+  for ($alpha = 0; $alpha < 360; $alpha += 6)
     {
     cpdf_rotate($pdf, 6.0);
     cpdf_moveto($pdf, $radius, 0.0);
@@ -127,7 +127,7 @@
  
   /* 5 minute strokes */
   cpdf_setlinewidth($pdf, 3.0);
-  for ($alpha = 0; $alpha &lt; 360; $alpha += 30)
+  for ($alpha = 0; $alpha < 360; $alpha += 30)
   {
     cpdf_rotate($pdf, 30.0);
     cpdf_moveto($pdf, $radius, 0.0);


Reply via email to