Comment 3 for bug 522535

Revision history for this message
kecsap (csaba-kertesz) wrote :

The problem is that there is no firefox-3.6 package provided and therefore the ubufox extension gives wrong version number for the apport scripts. The fix for this in Lucid to provide firefox-3.6 package or disable the fetching of the program version with this patch in ubufox:

=== modified file 'content/overlay.js'
--- content/overlay.js 2009-10-09 12:16:09 +0000
+++ content/overlay.js 2010-02-16 15:14:17 +0000
@@ -157,10 +157,7 @@
   procUtil.init(executable);

   var args = null;
- if (getAppVersion())
- args = new Array("-p", "firefox-" + getAppVersion());
- else
- args = new Array("-p", "firefox" );
+ args = new Array("-p", "firefox" );

   var res = procUtil.run(false, args, args.length);
 }