Changeset 661136
- Timestamp:
- 01/30/2013 07:11:20 AM (12 years ago)
- Location:
- rss-manager/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
rss-manager/trunk/readme.txt
r606004 r661136 1 1 === Plugin Name === 2 2 Contributors: ajayver, sputnik1818, Cristiano Leoni 3 Donate link: http://goo.gl/20bN74 3 Tags: rss, custom fields, images, manager, read more, feed 5 4 Requires at least: 2.8 6 Tested up to: 3. 3.17 Stable tag: 0.0 55 Tested up to: 3.5.1 6 Stable tag: 0.07 8 7 9 8 This plugin gives you the ability to change the appearance of your RSS feed. … … 37 36 == Changelog == 38 37 38 = 0.07 = 39 * Fixed feed delay 40 41 = 0.06 = 42 * Minor bug fixes 43 39 44 = 0.05 = 40 45 * Added WordPress built-in thumbnails support -
rss-manager/trunk/rss_manager.php
r504270 r661136 6 6 Author: ajayver, sputnik1818 7 7 Author URI: http://travelbloggers.ru/ 8 Version: 0.0 58 Version: 0.06 9 9 */ 10 10 /* Copyright 2011 Ajay Verma, Dmitry Vojtekhovich (email : [email protected]) … … 181 181 function publish_later_on_feed($where) { 182 182 global $wpdb; 183 $options = rss_manager_options(); 183 184 if ( is_feed() && $options['rss_pause_time']>0 && $options['rss_unit_of_time']!='') { 184 185 $now = gmdate('Y-m-d H:i:s'); … … 203 204 if (function_exists('load_plugin_textdomain')) 204 205 { 205 load_plugin_textdomain( 'rss-manager', '/' .PLUGINDIR. '/' .dirname(plugin_basename(__FILE__)) . '/languages/' );206 load_plugin_textdomain( 'rss-manager', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' ); 206 207 } 207 208 -
rss-manager/trunk/rss_manager_admin.php
r504270 r661136 5 5 wp_die( __('You do not have sufficient permissions to access this page.') ); 6 6 } 7 if ( $_POST['rm_submit']=="1") //если вызвали метод Post7 if (!empty($_POST['rm_submit'])) //если вызвали метод Post 8 8 { 9 9 $options['custom_field_name'] = $_POST['rm_custom_field_name'];
Note: See TracChangeset
for help on using the changeset viewer.