My beer compendium
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
145 B

3 years ago
  1. <?php
  2. // Insert a link to go back to the previous page
  3. function link_back($body = 'Go Back')
  4. {
  5. return link_to(URL::previous(), $body);
  6. }
  7. ?>