Changeset 120428
- Timestamp:
- 05/25/2009 09:41:22 PM (17 years ago)
- File:
-
- 1 edited
-
twittrup/trunk/twittrup.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
twittrup/trunk/twittrup.php
r120387 r120428 67 67 if(get_option('twittrup-post-publish-showlink') == '1'){ 68 68 $sShortUrl = shortenurl($sPostLink); 69 $sPostTitle = $sPostTitle . ' ( ' . $sShortUrl . ' )';69 $sPostTitle = $sPostTitle . ' ' . $sShortUrl . ''; 70 70 } 71 71 $sSentence = str_replace ( '#title#', $sPostTitle, $sSentence); … … 80 80 if(get_option('twittrup-post-edit-showlink') == '1'){ 81 81 $sShortUrl = shortenurl($sPostLink); 82 $sPostTitle = $sPostTitle . ' ( ' . $sShortUrl . ' )';82 $sPostTitle = $sPostTitle . ' ' . $sShortUrl . ''; 83 83 } 84 84 $sSentence = str_replace ( '#title#', $sPostTitle, $sSentence); … … 93 93 if(get_option('twittrup-draft-created-showlink') == '1'){ 94 94 $sShortUrl = shortenurl($sPostLink); 95 $sPostTitle = $sPostTitle . ' ( ' . $sShortUrl . ' )';95 $sPostTitle = $sPostTitle . ' ' . $sShortUrl . ''; 96 96 } 97 97 $sSentence = str_replace ( '#title#', $sPostTitle, $sSentence); … … 106 106 if(get_option('twittrup-draft-edit-showlink') == '1'){ 107 107 $sShortUrl = shortenurl($sPostLink); 108 $sPostTitle = $sPostTitle . ' ( ' . $sShortUrl . ' )';108 $sPostTitle = $sPostTitle . ' ' . $sShortUrl . ''; 109 109 } 110 110 $sSentence = str_replace ( '#title#', $sPostTitle, $sSentence);
Note: See TracChangeset
for help on using the changeset viewer.