Gallery2flickr add pagination buttons at the bottom (of the search results) as well.

Gallery2flickr is a gallery2 plugin that acts as a bridge between gallery2 and flickr.

The search page normally only has the next and previous page buttons as the top (and not at the bottom).
In order to add these buttons to the bottom as well, edit modules\Gallery2Flickr\templates\FlickrSearch.tpl and just before the div with the copyright info, enter the following (or find it earlier in the file).

344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
{if isset($Flickr.pages)}
<div class="gbBlock">
  <h4>
   {if ($Flickr.pages > 0)}
     {g->text text="Results %d - %d of %d, Page %d of %d"
     arg1=$Flickr.pages.start arg2=$Flickr.pages.end
     arg3=$Flickr.pages.total arg4=$form.page arg5=$Flickr.pages.pages}
   {/if}
   {if ($form.page > 1)}
     <input type="submit" class="inputTypeSubmit"
       name="{g->formVar var="form[action][previousPage]"}"
       value="{g->text text="&laquo; Back"}"/>
   {/if}
   {if ($form.page < $Flickr.pages.pages)}
     <input type="submit" class="inputTypeSubmit"
       name="{g->formVar var="form[action][nextPage]"}"
       value="{g->text text="Next &raquo;"}"/>
   {/if}
   <input 
      type="submit" 
      class="inputTypeSubmit"
      name="{g->formVar var="form[action][importpage]"}" value="{g->text text="Import this page"}"/>
   <input 
      type="submit" 
      class="inputTypeSubmit"
      name="{g->formVar var="form[action][importresults]"}" value="{g->text text="Import all results"}"/>
 </h4>
</div>
{/if}