summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2004-07-25 19:50:23 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2004-07-25 19:50:23 +0000
commitef6cbfda6fdc0e5d1c8c5fd900eb662722e89e0f (patch)
treeacab7829d32e6ca25345ad4a8033bfc322e0bd4c /includes
parentf2ac51dc5e6ffa1f27abd10b1a352d71b08c5b80 (diff)
downloadbrdo-ef6cbfda6fdc0e5d1c8c5fd900eb662722e89e0f.tar.gz
brdo-ef6cbfda6fdc0e5d1c8c5fd900eb662722e89e0f.tar.bz2
- Fixing broken tablesort due to typo with quotes.
Diffstat (limited to 'includes')
-rw-r--r--includes/tablesort.inc2
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'] .'&amp;order='. urlencode($cell['data']). $ts['query_string']);
+ $cell['data'] = l($cell['data'] . $image, $_GET['q'], array('title' => $title), 'sort='. $ts['sort'] .'&amp;order='. urlencode($cell['data']). $ts['query_string']);
unset($cell['field'], $cell['sort']);
}