Advertisement
bhengh

sb_print_sermon_link NEW

May 13th, 2013
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // Prints sermon search URL
  2. function sb_print_sermon_link($sermon, $echo = true, $relative_link = true) {
  3. if ($echo)
  4. echo sb_build_url(array('sermon_id' => $sermon->id), true, $relative_link);
  5. else
  6. return sb_build_url(array('sermon_id' => $sermon->id), true, $relative_link);
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement