Support for PHP > 3
authorJoey Schulze <joey@infodrom.org>
Sat, 30 Dec 2006 09:48:19 +0000 (09:48 +0000)
committerJoey Schulze <joey@infodrom.org>
Sat, 30 Dec 2006 09:48:19 +0000 (09:48 +0000)
src/InfoCon/buch/index.wml
src/InfoCon/buch/list.wml

index 8665361..b2001e9 100644 (file)
@@ -2,7 +2,7 @@
 
 <page func=InfoCon title="Buchhaltung">
 
-<form method=POST action=list.php3>
+<form method=POST action=list.php>
 <input type=hidden name=blzkto value="<? echo $blzkto; ?>">
 <b>Jahr</b>: <input name=year size=10 maxlength=4><br>
 <b>Kategorie:</b> <select name=category>
@@ -33,7 +33,7 @@
   if (pg_NumRows ($sth) > 0) {
     $form = 1;
     echo ("<h3>Nicht bezahlte Rechnungen</h3>");
-    echo ("<form method=\"POST\" action=\"pay.php3\">");
+    echo ("<form method=\"POST\" action=\"pay.php\">");
   }
 
   for ($nr=0; $nr <pg_NumRows ($sth); $nr++) {
@@ -49,7 +49,7 @@
   if (!form && pg_NumRows ($sth) > 0) {
     $form = 1;
     echo ("<h3>Nicht bezahlte Rechnungen</h3>");
-    echo ("<form method=\"POST\" action=\"pay.php3\">");
+    echo ("<form method=\"POST\" action=\"pay.php\">");
   }
 
   for ($nr=0; $nr <pg_NumRows ($sth); $nr++) {
index 041f78e..805f42e 100644 (file)
@@ -66,7 +66,7 @@
     printf ("<tr bgcolor=\"#%s\">", $color);
     printf ("<td width=\"15%%\" align=\"right\"><font face=\"Helvetica,Arial\">%s</font></td>", $date);
     printf ("<td width=\"20%%\"><font face=\"Helvetica,Arial\">%s</font></td>", $row['category']);
-    printf ("<td width=\"50%%\"><font face=\"Helvetica,Arial\"><a href=\"edit.php3?oid=%d&cur=%s\">%s</a></font></td>",
+    printf ("<td width=\"50%%\"><font face=\"Helvetica,Arial\"><a href=\"edit.php?oid=%d&cur=%s\">%s</a></font></td>",
       $row['oid'], $currency, $row['description']);
     printf ("<td width=\"15%%\" align=\"right\"><font face=\"Helvetica,Arial\">%5.2f</font></td>", $row['price']);
     $sum += $row['price'];