Index: pubdlcnt.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/pubdlcnt/pubdlcnt.module,v
retrieving revision 1.1.2.1
diff -u -p -r1.1.2.1 pubdlcnt.module
--- pubdlcnt.module	23 Jun 2009 03:13:25 -0000	1.1.2.1
+++ pubdlcnt.module	15 Jul 2009 03:58:04 -0000
@@ -238,6 +238,8 @@ function pubdlcnt_counter_form(&$form_st
     foreach ($params as $param) {
       if (preg_match("/file=(.*)/", $param, $match)) {
         $name = check_url($match[1]);
+        // convert '%20' back to space characters
+        $name = preg_replace('/%20/', ' ', $name);
       }
       if (preg_match("/year=(.*)/", $param, $match)) {
         $tgt_y = (int)($match[1]);
