diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2004-07-25 19:50:23 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2004-07-25 19:50:23 +0000 |
commit | ef6cbfda6fdc0e5d1c8c5fd900eb662722e89e0f (patch) | |
tree | acab7829d32e6ca25345ad4a8033bfc322e0bd4c /includes | |
parent | f2ac51dc5e6ffa1f27abd10b1a352d71b08c5b80 (diff) | |
download | brdo-ef6cbfda6fdc0e5d1c8c5fd900eb662722e89e0f.tar.gz brdo-ef6cbfda6fdc0e5d1c8c5fd900eb662722e89e0f.tar.bz2 |
- Fixing broken tablesort due to typo with quotes.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/tablesort.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/tablesort.inc b/includes/tablesort.inc index 7a3fcf1ee..e80eb544f 100644 --- a/includes/tablesort.inc +++ b/includes/tablesort.inc @@ -85,7 +85,7 @@ function tablesort_header($cell, $header, $ts) { $ts['sort'] = 'asc'; } $title = t('sort by %s', array('%s' => $cell['data'])); - $cell['data'] = l($cell['data'] . $image, $_GET['q'], array('title' => $title), 'sort="'. $ts['sort'] .'&order='. urlencode($cell['data']). $ts['query_string']); + $cell['data'] = l($cell['data'] . $image, $_GET['q'], array('title' => $title), 'sort='. $ts['sort'] .'&order='. urlencode($cell['data']). $ts['query_string']); unset($cell['field'], $cell['sort']); } |