修改 sociable.php 469 行
1 | $url = str_replace(’TITLE’, $title, $url) |
修改為
1 | $url = str_replace('TITLENAME', $title, $url) |
這邊是修改參數避免造成Udn無法抓到文章標題,接著是加入台灣的共享書籤
sociable.php 33 行 加入
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | 'Push-Reporter' => Array( 'favicon' => 'push.png', 'url' => 'http://www.push-reporter.com/submit.php?url=PERMALINK', ), 'YouPush' => Array( 'favicon' => 'yp.gif', 'url' => 'http://www.youpush.net/submit.php?url=PERMALINK', ), 'Udn' => Array( 'favicon' => 'udn.gif', 'url' => 'http://bookmark.udn.com/add?f_TITLE=TITLENAME&f_URL=PERMALINK', ), 'Fiigo' => Array( 'favicon' => 'fiigo.gif', 'url' => 'http://www.fiigo.com/bookmark/add.php?a=add_web&title=TITLENAME&url=PERMALINK', ), 'funP' => Array( 'favicon' => 'funP.gif', 'url' => 'http://funp.com/pages/submit/add.php?TITLE=TITLENAME&url=PERMALINK&via=tools', ), |
評論已關閉.