bjori           Thu Aug 30 13:55:44 2007 UTC

  Modified files:              
    /phd/themes/php     phpdotnet.php 
  Log:
  Fix external links
  # (should be prefixed with »)
  
  
http://cvs.php.net/viewvc.cgi/phd/themes/php/phpdotnet.php?r1=1.12&r2=1.13&diff_format=u
Index: phd/themes/php/phpdotnet.php
diff -u phd/themes/php/phpdotnet.php:1.12 phd/themes/php/phpdotnet.php:1.13
--- phd/themes/php/phpdotnet.php:1.12   Thu Aug 30 13:54:16 2007
+++ phd/themes/php/phpdotnet.php        Thu Aug 30 13:55:44 2007
@@ -1,5 +1,5 @@
 <?php
-/*  $Id: phpdotnet.php,v 1.12 2007/08/30 13:54:16 bjori Exp $ */
+/*  $Id: phpdotnet.php,v 1.13 2007/08/30 13:55:44 bjori Exp $ */
 
 class phpdotnet extends PhDHelper {
     protected $elementmap = array(
@@ -159,7 +159,7 @@
             } elseif ($props["empty"]) {
                 return sprintf('<a href="%s%s%s" class="%s">%s%2$s</a>', 
$this->chunked ? "" : "#", $href, $fragment, $class, $content);
             } else {
-                return sprintf('<a href="%s%s%s" class="%s">', $this->chunked 
? "" : "#", $href, $fragment, $class);
+                return sprintf('<a href="%s%s%s" class="%s">%s', 
$this->chunked ? "" : "#", $href, $fragment, $class, $content);
             }
         }
         return "</a>";

Reply via email to