
function format_interval($timestamp, $granularity = 2, $langcode = NULL) {
$units = array(
'1 year|@count years' => 31536000,
'1 week|@count weeks' => 604800,
'1 day|@count days' => 86400,
'1 hour|@count hours' => 3600,
'1 min|@count min' => 60,
'1 sec|@count sec' => 1);
$output = '';
.....
function format_plural($count, $singular, $plural, $args = array(), $langcode = NULL) {
$args['@count'] = $count;
So , I am working currently with this issue. And would be great to know if such issue is created and when will be fixed.
| Comment | File | Size | Author |
|---|---|---|---|
| #4 | Screenshot-5.png | 24.22 KB | landike |
| Screenshot-4.png | 7.77 KB | landike |
Comments
Comment #1
landike commentedUsing Drupal 6.13 version
includes/common.inc
Comparing with D6.19 - WAITING for results.
Comment #2
landike commentedComment #3
landike commentedcould be user.admin.inc .... researching
Comment #4
landike commentedComment #5
landike commentedhttp://drupal.org/files/issues/Screenshot-5_8.png
is showing how it looks in User Management
Comment #6
landike commentedComment #7
dpearcefl commentedHas this issue been fixed in the latest D6?
Comment #8
dpearcefl commented