To participate you must create an account on apostrophenow.org. If you have already done so, click Login.

Changeset 4479

Show
Ignore:
Timestamp:
01/18/12 15:07:29 (4 months ago)
Author:
johnnyoffline
Message:

slot help text doesn't need to get output to logged out visitors

Location:
plugins/apostropheBlogPlugin/branches/1.5/modules
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • plugins/apostropheBlogPlugin/branches/1.5/modules/aBlogSlot/templates/_normalView.php

    r3916 r4479  
    2020        <?php endforeach ?> 
    2121<?php else: ?> 
    22         <h4><?php echo a_('There are no blog posts that match the criteria you have specified.') ?></h4> 
     22  <?php if ($sf_user->isAuthenticated()): ?> 
     23          <h4><?php echo a_('There are no blog posts that match the criteria you have specified.') ?></h4>     
     24  <?php endif ?> 
    2325<?php endif ?> 
  • plugins/apostropheBlogPlugin/branches/1.5/modules/aEventSlot/templates/_normalView.php

    r3593 r4479  
    2323        <?php endforeach ?> 
    2424<?php else: ?> 
    25         <h4><?php echo a_('There are no events that match the criteria you have specified.') ?></h4> 
     25  <?php if ($sf_user->isAuthenticated()): ?> 
     26          <h4><?php echo a_('There are no events that match the criteria you have specified.') ?></h4>     
     27  <?php endif ?> 
    2628<?php endif ?>