template.php 299 B

12345678910111213141516
  1. <?php
  2. // $Id$
  3. /**
  4. * @file
  5. * Preprocess for sub-theme
  6. */
  7. /**
  8. * Preprocess for theme_node().
  9. *
  10. * @param array $variables
  11. * @return void
  12. */
  13. function fg_lemontwist_preprocess_node($variables) {
  14. $variables['terms_wrapped'] = t('Published in:!terms', array('!terms' => $variables['terms']));
  15. }