Advertisement
Guest User

Editorial

a guest
Aug 28th, 2014
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1.  
  2. /* change this block on line 132 */
  3. {if $url_short neq "http://" && $url_short neq "://"}
  4. <i class="fa fa-globe"></i>
  5. <a href="{$url}" {if $open_in_new_window eq true} target="_blank"{/if} {if $story_status neq "published"}rel="nofollow"{/if}>{$url_short}</a>
  6. {/if}
  7.  
  8. To This:
  9.  
  10. {if $url_short neq "http://" && $url_short neq "://"}
  11. <i class="fa fa-globe"></i>
  12. <a href="{$url}" {if $open_in_new_window eq true} target="_blank"{/if} {if $story_status neq "published"}rel="nofollow"{/if}>{$url_short}</a>
  13. {else}
  14. <i class="fa fa-globe"></i>
  15. {$No_URL_Name}
  16. {/if}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement