- new clear-block class on whole-node <div> - margin/padding applied to "submitted info - taxonomy wrapper not translatable
16 lines
299 B
PHP
16 lines
299 B
PHP
<?php
|
|
// $Id$
|
|
/**
|
|
* @file
|
|
* Preprocess for sub-theme
|
|
*/
|
|
|
|
/**
|
|
* Preprocess for theme_node().
|
|
*
|
|
* @param array $variables
|
|
* @return void
|
|
*/
|
|
function fg_lemontwist_preprocess_node($variables) {
|
|
$variables['terms_wrapped'] = t('Published in:!terms', array('!terms' => $variables['terms']));
|
|
}
|