I've added the Time helper to app_controller.php:
<?php
class AppController extends Controller {
var $helpers = array('Html', 'Form', 'Session', 'Time');
}
?>
I'm trying to get niceShort in my view:
<?php echo $post['Post']['created']; ?> //Works
but,
<?php echo niceShort($post['Post']['created']); ?> //Doesn't... Fatal
error: Call to undefined function shortNice()
What is missing? Isn't the function available by adding Time to the helpers?
Thanks,
Steve
Check out the new CakePHP Questions site http://cakeqs.org and help others with
their CakePHP related questions.
You received this message because you are subscribed to the Google Groups
"CakePHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected] For more options, visit this group at
http://groups.google.com/group/cake-php?hl=en