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

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



Revision: 4858
          http://ledger-smb.svn.sourceforge.net/ledger-smb/?rev=4858&view=rev
Author:   einhverfr
Date:     2012-06-07 08:58:57 +0000 (Thu, 07 Jun 2012)
Log Message:
-----------
Removing debugging code from file.pl

Modified Paths:
--------------
    branches/1.3/Changelog
    branches/1.3/scripts/file.pl
    branches/1.3/sql/modules/Fixes.sql

Modified: branches/1.3/Changelog
===================================================================
--- branches/1.3/Changelog	2012-06-07 08:24:51 UTC (rev 4857)
+++ branches/1.3/Changelog	2012-06-07 08:58:57 UTC (rev 4858)
@@ -4,6 +4,7 @@
 
 Changelog for 1.3.19
 * New link for customer/vendor when not a dropdown (Chris T)
+* Removed file debugging code from file.pl (Chris T)
 
 Changelog for 1.3.18
 * Fixed missing template for CSV pricelists (Chris T)

Modified: branches/1.3/scripts/file.pl
===================================================================
--- branches/1.3/scripts/file.pl	2012-06-07 08:24:51 UTC (rev 4857)
+++ branches/1.3/scripts/file.pl	2012-06-07 08:58:57 UTC (rev 4858)
@@ -111,7 +111,6 @@
         $file->content($fdata);
     }
     $request->{content} = $file->content;
-    $request->debug({file => '/tmp/file'});
     $file->attach;
     my $cgi = CGI::Simple->new;
     print $cgi->redirect($request->{callback});

Modified: branches/1.3/sql/modules/Fixes.sql
===================================================================
--- branches/1.3/sql/modules/Fixes.sql	2012-06-07 08:24:51 UTC (rev 4857)
+++ branches/1.3/sql/modules/Fixes.sql	2012-06-07 08:58:57 UTC (rev 4858)
@@ -429,6 +429,7 @@
 order:  parent, position, label.  The return value is the id number of the menu
 item created. $$;
 
+DROP VIEW menu_friendly;
 CREATE VIEW menu_friendly AS
 WITH RECURSIVE tree (path, id, parent, level, positions)
                                AS (select id::text as path, id, parent, 

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