Changeset 1730108
- Timestamp:
- 09/14/2017 06:33:08 PM (8 years ago)
- Location:
- newsplugin
- Files:
-
- 3 edited
- 4 copied
-
tags/1.0.14 (copied) (copied from newsplugin/trunk)
-
tags/1.0.14/news-plugin-widget.php (copied) (copied from newsplugin/trunk/news-plugin-widget.php) (1 diff)
-
tags/1.0.14/news-plugin.php (copied) (copied from newsplugin/trunk/news-plugin.php) (2 diffs)
-
tags/1.0.14/readme.txt (copied) (copied from newsplugin/trunk/readme.txt) (2 diffs)
-
trunk/news-plugin-widget.php (modified) (1 diff)
-
trunk/news-plugin.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
newsplugin/tags/1.0.14/news-plugin-widget.php
r1714848 r1730108 864 864 $opts['show_abstract'] = ! empty( $new_opts['show_abstract'] ) ; 865 865 $opts['feed_mode'] = ( ! empty( $new_opts['feed_mode'] ) ) ? strip_tags( $new_opts['feed_mode'] ) : ''; 866 $opts['wp_uid'] = get_current_user_id();866 $opts['wp_uid'] = (!isset($new_opts['wp_uid']) || empty($new_opts['wp_uid'])) ? get_current_user_id() : $new_opts['wp_uid']; 867 867 868 868 return $opts; -
newsplugin/tags/1.0.14/news-plugin.php
r1714848 r1730108 5 5 Description: Create custom newsfeeds for your website. Choose keywords, number of articles and other settings, put the feed wherever you want using widgets or shortcodes, and watch the fresh relevant news headlines appear on your pages (or approve and publish them manually). You can always shape the news right from your website, remove unwanted articles or star the good ones. Thanks for using the NewsPlugin, and we hope you like it. 6 6 Author: newsplugin.com 7 Version: 1.0.1 37 Version: 1.0.14 8 8 Author URI: http://newsplugin.com/ 9 9 */ … … 135 135 'show_source' => '', 136 136 'show_abstract' => '', 137 'feed_mode' => '' 137 'feed_mode' => '', 138 'wp_uid' => '' 138 139 ), $attrs ); 139 140 $newswid = new News_Plugin_Widget(); -
newsplugin/tags/1.0.14/readme.txt
r1714848 r1730108 4 4 Requires at least: 3.9 5 5 Tested up to: 4.8 6 Stable tag: 1.0.1 36 Stable tag: 1.0.14 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 72 72 73 73 == Changelog == 74 75 = 1.0.14 = 76 Release Date: September 14, 2017 77 78 * Fix storing user in shortcode 74 79 75 80 = 1.0.13 = -
newsplugin/trunk/news-plugin-widget.php
r1714848 r1730108 864 864 $opts['show_abstract'] = ! empty( $new_opts['show_abstract'] ) ; 865 865 $opts['feed_mode'] = ( ! empty( $new_opts['feed_mode'] ) ) ? strip_tags( $new_opts['feed_mode'] ) : ''; 866 $opts['wp_uid'] = get_current_user_id();866 $opts['wp_uid'] = (!isset($new_opts['wp_uid']) || empty($new_opts['wp_uid'])) ? get_current_user_id() : $new_opts['wp_uid']; 867 867 868 868 return $opts; -
newsplugin/trunk/news-plugin.php
r1714848 r1730108 5 5 Description: Create custom newsfeeds for your website. Choose keywords, number of articles and other settings, put the feed wherever you want using widgets or shortcodes, and watch the fresh relevant news headlines appear on your pages (or approve and publish them manually). You can always shape the news right from your website, remove unwanted articles or star the good ones. Thanks for using the NewsPlugin, and we hope you like it. 6 6 Author: newsplugin.com 7 Version: 1.0.1 37 Version: 1.0.14 8 8 Author URI: http://newsplugin.com/ 9 9 */ … … 135 135 'show_source' => '', 136 136 'show_abstract' => '', 137 'feed_mode' => '' 137 'feed_mode' => '', 138 'wp_uid' => '' 138 139 ), $attrs ); 139 140 $newswid = new News_Plugin_Widget(); -
newsplugin/trunk/readme.txt
r1714848 r1730108 4 4 Requires at least: 3.9 5 5 Tested up to: 4.8 6 Stable tag: 1.0.1 36 Stable tag: 1.0.14 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 72 72 73 73 == Changelog == 74 75 = 1.0.14 = 76 Release Date: September 14, 2017 77 78 * Fix storing user in shortcode 74 79 75 80 = 1.0.13 =
Note: See TracChangeset
for help on using the changeset viewer.