Index: includes/bootstrap.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/bootstrap.inc,v
retrieving revision 1.462
diff -r1.462 bootstrap.inc
1475a1476,1480
>   if (is_array($text) || is_object($text)) {
>     $stack = debug_backtrace();
>     $caller = $stack[1];
>     dsm($text, 'incorrect check_plain from '. $caller['function']);
>   }
Index: includes/common.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/common.inc,v
retrieving revision 1.1283
diff -r1.1283 common.inc
6371c6371
<       'variables' => array('url' => NULL, 'title' => NULL)
---
>       'variables' => array('url' => NULL, 'title' => NULL, 'options' => array()),
Index: includes/theme.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/theme.inc,v
retrieving revision 1.627
diff -r1.627 theme.inc
1923a1924,1927
>  *   - options: A url()-compatible options array
>  *
>  *   The "title" variable, if not empty, overrides any title attribute in the
>  *   "options" array.
1926c1930,1934
<   return '<div class="more-link">' . l(t('More'), $variables['url'], array('attributes' => array('title' => $variables['title']))) . '</div>';
---
>   $options = $variables['options'];
>   if (!empty($variables['title'])) {
>     $options['attributes']['title'] = $variables['title'];
>   }
>   return '<div class="more-link">' . l(t('More'), $variables['url'], $options) . '</div>';
