FS#82 - テンプレート コメントのヘッダー/本体/フッター で、テンプレート変数
割り当てられたプロジェクト:
オープン者 shizuki (shizuki) - Wednesday, 31 October 2007, 01:26 GMT+9
最終修正者 shizuki (shizuki) - Wednesday, 31 October 2007, 01:34 GMT+9
オープン者 shizuki (shizuki) - Wednesday, 31 October 2007, 01:26 GMT+9
最終修正者 shizuki (shizuki) - Wednesday, 31 October 2007, 01:34 GMT+9
|
詳細array で渡している変数を object として処理しようとしている為に、内容を取得できない
|
このタスクが依存しているタスク
line 208
function parse_title($format = \'\') {
if (is_array($this->currentItem)) {
$itemtitle = $this->currentItem[\'title\'];
} elseif (is_object($this->currentItem)) {
$itemtitle = $this->currentItem->title;
}
switch ($format) {
case \'xml\':
// echo stringToXML ($this->currentItem->title);
echo stringToXML ($itemtitle);
break;
case \'attribute\':
// echo stringToAttribute ($this->currentItem->title);
echo stringToAttribute ($itemtitle);
break;
case \'raw\':
// echo $this->currentItem->title;
echo $itemtitle;
break;
default:
// $this->highlightAndParse($this->currentItem->title);
$this->highlightAndParse($itemtitle);
break;
}
}
に変更