paginateのリンク先に携帯向けセッションIDをねじ込む

http://cakephp.jp/modules/newbb/viewtopic.php?post_id=1398&topic_id=751&forum=3
を使って携帯電話向けにセッションIDをサイト内リンクに付け足したりしておるのですが
$paginator でリンク出力した時に自動でつかないようなので引数とかで指定できるのかと思い、
いろいろやったもののいい具合にできなかったので $this->link で出力する手前の htmlhelper にひどいことしました


CakePHPのバージョンは 1.2.0.6311 beta です


cake/libs/view/helpers/html.php

***************
*** 288,293 ****
--- 288,297 ----
      $escapeTitle = false;
  }
  
+ if (strpos($url, "?" . Configure::read('Session.cookie') . "=") === FALSE) {
+     $url .= "?" . Configure::read('Session.cookie') . "=" . session_id();
+ }
+ 
  if (isset($htmlAttributes['escape'])) {
      $escapeTitle = $htmlAttributes['escape'];
      unset($htmlAttributes['escape']);