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

SF.net SVN: ledger-smb:[5779] branches/1.3



Revision: 5779
          http://sourceforge.net/p/ledger-smb/code/5779
Author:   einhverfr
Date:     2013-05-12 09:33:19 +0000 (Sun, 12 May 2013)
Log Message:
-----------
Fixing department dropdowns not showing correct values for GL and cash transfer

Modified Paths:
--------------
    branches/1.3/Changelog
    branches/1.3/bin/gl.pl

Modified: branches/1.3/Changelog
===================================================================
--- branches/1.3/Changelog	2013-05-12 09:31:49 UTC (rev 5778)
+++ branches/1.3/Changelog	2013-05-12 09:33:19 UTC (rev 5779)
@@ -14,6 +14,7 @@
 * Fixed draft review issues for Cash Transfer GL drafts (Chris T, 802)
 * Added fx boxes for GL transactions (Chris T, required to fix 802)
 * Fixed odd UI issues with voiding GL transactions (Chris T, 803)
+* Fixed department dropdown not showing values (Chris T, 805)
 
 
 Nick P is Nick Prater

Modified: branches/1.3/bin/gl.pl
===================================================================
--- branches/1.3/bin/gl.pl	2013-05-12 09:31:49 UTC (rev 5778)
+++ branches/1.3/bin/gl.pl	2013-05-12 09:33:19 UTC (rev 5779)
@@ -939,7 +939,7 @@
     $form->{title} = "Edit";
     if($form->{department_id})
     {
-         $form->{department}=$form->{departmentdesc}."--".$form->{department_id};
+         $form->{department}=$form->{department}."--".$form->{department_id};
     }
     $i = 0;
     foreach $ref ( @{ $form->{GL} } ) {

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