Two small modules

Recently I needed to toss together two small 'modules' - I'm not even sure I should call them that, but...

The first is mostly a patch to fix an issue with D7 Views without actually running a patch to Views itself.  The issue is - Reset button on exposed filters causes a redirect loop.  

Basically, an exposed Views filter which uses the 'Reset' button runs into a loop if the 'Reset' button is used - not a good thing.  But instead of patching Views a comment was posted to make a module - http://drupal.org/node/1807916#comment-7124206 - so I did. And it seems to work quite well.  Once the bug is patched, I will disable the module.

I placed it on the DPE fserver: https://drupal.psu.edu/fserver/project/views_reset

The second module is to address an issue with one of my non-PSU D6 sites where my content creators cut and paste content into the WYSIWYG'd node body. As I have been fixing another, non-related issue, I noticed a lot of single, STRONG'd lines (aka headings) which I was replacing with H3s by hand.  With thousands of nodes and many which I would miss, I thought I might be able to make an input filter which would handle that automagically.  I looked at what the Image Caption module does and copied it.  

It only handles lines like:

<p><strong>HEADER TEXT</strong></p>

which I may have to change since I noticed a few instances of:

<p><strong>HEADER TEXT</strong><br><br>OTHER TEXT</p>

One thing to note is that its pretty easy to make a mistake which causes the input filter to filter out all the body content.  Regex is always fun

The filter module is also on the fserver at: https://drupal.psu.edu/fserver/project/strong_replace_filter