[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

SF.net SVN: ledger-smb: [82] trunk/LedgerSMB/Menu.pm



Revision: 82
          http://svn.sourceforge.net/ledger-smb/?rev=82&view=rev
Author:   christopherm
Date:     2006-09-13 06:58:08 -0700 (Wed, 13 Sep 2006)

Log Message:
-----------
menu items were missing a closing " in the href if there was no target (mostly visible in lynx)

Modified Paths:
--------------
    trunk/LedgerSMB/Menu.pm

Modified: trunk/LedgerSMB/Menu.pm
===================================================================
--- trunk/LedgerSMB/Menu.pm	2006-09-13 06:45:11 UTC (rev 81)
+++ trunk/LedgerSMB/Menu.pm	2006-09-13 13:58:08 UTC (rev 82)
@@ -72,6 +72,9 @@
   if ($target) {
     $str .= qq|" target="$target"|;
   }
+  else{
+	$str .= '"';
+  }
   
   $str .= qq|>|;
   


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.