Changeset 409082
- Timestamp:
- 07/13/2011 06:36:09 AM (15 years ago)
- Location:
- noprofeedorg/trunk
- Files:
-
- 3 edited
-
class.noprofeed.php (modified) (1 diff)
-
noprofeed.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
noprofeedorg/trunk/class.noprofeed.php
r403247 r409082 1267 1267 * full 1268 1268 */ 1269 $html .= strip_tags($value['content'], '<br><p>'); 1269 /* 1.0.1: BEG */ 1270 // $html .= strip_tags($value['content'], '<br><p>'); 1271 1272 $tmp = explode(' ', strip_tags($value['content'], '<br><p>')); 1273 1274 $t = count($tmp); 1275 $tm = (int)NOPROFEED_WID_MAX_WORDS + 1; 1276 1277 if($t < $tm) { 1278 1279 $html .= $value['content']; 1280 } 1281 else { 1282 1283 for($i=0; $i<$tm; $i++) { 1284 1285 $html .= $tmp[$i] . ' '; 1286 } 1287 $html = substr($html, 0, -1) . '...<br />'; 1288 } 1289 /* 1.0.1: END */ 1270 1290 } 1271 1291 -
noprofeedorg/trunk/noprofeed.php
r403247 r409082 4 4 Plugin URI: http://noprofeed.org/ 5 5 Description: Help non-profit organizations to spread the word about their activities on the largest possible number of WordPress blogs/sites. 6 Version: 1.0. 06 Version: 1.0.1 7 7 Author: Ugo Grandolini aka "camaleo" 8 8 Author URI: http://grandolini.com … … 31 31 32 32 33 define('NOP_VERSION', '1.0. 0');33 define('NOP_VERSION', '1.0.1'); 34 34 define('NOP_DB_VERSION', '1.0.0'); 35 35 // TODO automatically upgrade the db structure when needed! 36 37 define('NOPROFEED_WID_MAX_WORDS', 20); /* 1.0.1 */ 36 38 37 39 -
noprofeedorg/trunk/readme.txt
r403270 r409082 2 2 Contributors: camaleo 3 3 Donate link: 4 Tags: myeasy, update, admin, administration, ajax, comments, google, facebook, image, images, links, jquery, plugin, plugins, post, posts, rss, seo, sidebar, social, twitter, video, widget, wordpress, youtube4 Tags: social, help, update, comments, links, plugin, plugins, rss, sidebar, google, facebook, twitter, widget, wordpress 5 5 Requires at least: 2.8 6 6 Tested up to: 3.2 7 Stable tag: 3.27 Stable tag: trunk 8 8 9 9 Help non-profit organizations to spread the word about their activities on the largest possible number of WordPress blogs/sites. … … 58 58 == Changelog == 59 59 60 = 1.0.1 = 61 Limiting the number of words to 20 in the widget feed content - even when the "The title and the entire feed content" option is selected. 62 Minor fixes in the code. 63 60 64 = 1.0.0 = 61 65 This is the first release. … … 63 67 == Upgrade Notice == 64 68 65 = 1.0. 0=66 This is the first release.69 = 1.0.1 = 70 Simply upgrade ad usual.
Note: See TracChangeset
for help on using the changeset viewer.