mirror of
https://github.com/twisterarmy/twister-phpbot.git
synced 2025-02-03 18:44:21 +00:00
comments
This commit is contained in:
parent
212d31c086
commit
96f0d63de2
@ -10,7 +10,7 @@ if (!$rss) die('Cannot read rss');
|
||||
|
||||
// Initialise TwisterPost
|
||||
require_once 'twisterpost.php';
|
||||
$twister = new TwisterPost('habr_ru');
|
||||
$twister = new TwisterPost('habr_ru'); // set user name
|
||||
|
||||
// Set path to twisterd directory
|
||||
$twister->twisterPath = '.' . DIRECTORY_SEPARATOR . 'twister-win32-bundle' . DIRECTORY_SEPARATOR;
|
||||
@ -30,9 +30,10 @@ foreach ($rss->channel->item as $item) {
|
||||
continue;
|
||||
}
|
||||
|
||||
// short URL [-6 chars do matter]
|
||||
// shorten URL [-6 chars do matter]
|
||||
$link = str_replace('habrahabr.ru', 'habr.ru', $link);
|
||||
$link = rtrim($link, '/');
|
||||
|
||||
$msg = $twister->prettyPrint($title, $link, isset($item->category) ? $item->category : null);
|
||||
|
||||
if ($twister->postMessage($msg)) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user