Created
June 19, 2013 21:55
-
-
Save chadsten/5818491 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| function eco_preprocess_node(&$variables, $hook) { | |
| $sub_date = t('@date', array('@date' => date("l, M jS, Y", $variables['created']))); | |
| $variables['submitted'] = "Submitted by " . $variables['name'] . " on " . $sub_date; | |
| } | |
| function eco_preprocess_comment(&$variables) { | |
| $sub_date = t('@date', array('@date' => date("l, M jS, Y", $variables['created']))); | |
| $variables['submitted'] = "Submitted by " . $variables['author'] . " on " . $sub_date; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment