Changeset 2109906
- Timestamp:
- 06/21/2019 05:33:59 AM (7 years ago)
- Location:
- revisionize/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (4 diffs)
-
revisionize.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
revisionize/trunk/readme.txt
r1956151 r2109906 3 3 Tags: revision, schedule, cron, staging, variation, publishing, content, stage 4 4 Requires at least: 4.4 5 Tested up to: 4.95 Tested up to: 5.2.2 6 6 Stable tag: trunk 7 7 License: GPLv3 or later … … 19 19 Visit [revisionize.pro](https://revisionize.pro) to add functionality that makes Revisionize even more powerful. 20 20 21 22 23 21 = Compatible with = 24 22 … … 26 24 * [Public Post Preview](https://wordpress.org/plugins/public-post-preview/) 27 25 * *Let us know other plugins that you have successfully used Revisionize with* 26 27 = Known Issues = 28 29 * Gutenberge. Revisionize is not compatible with the default Gutenberg editor. You must install the [Classic Editor](https://wordpress.org/plugins/classic-editor/) plugin. 30 * WP Recipe Maker. There have been reported issues that indicate Revisionize does not work with this plugin. However, we could not verify these reports. Use at your own risk. 31 * Some plugins store content in their own database tables, which Revisionize knows nothing about. It's possible that publishing a revision will not save changes for these types of plugins. Revisionize will only work with content stored in the `wp_posts` and `wp_postmeta` tables. 28 32 29 33 Please post in the support section for help before leaving a negative review! … … 39 43 40 44 == Changelog == 45 46 = 2.3.1 = 47 * Fix. Add missing i18n domain. 48 * Improvement. Add Known Issues to readme. 41 49 42 50 = 2.3.0 = -
revisionize/trunk/revisionize.php
r1956151 r2109906 4 4 Plugin URI: https://revisionize.pro 5 5 Description: Draft up revisions of live, published content. The live content doesn't change until you publish the revision manually or with the scheduling system. 6 Version: 2.3. 06 Version: 2.3.1 7 7 Author: Jamie Chong 8 8 Author URI: https://revisionize.pro … … 331 331 </div> 332 332 <?php else: ?> 333 <div><em><?php echo sprintf(__('WARNING: Publishing this revision will overwrite %s.' ), get_parent_editlink($parent, __('its original')))?></em></div>333 <div><em><?php echo sprintf(__('WARNING: Publishing this revision will overwrite %s.', REVISIONIZE_I18N_DOMAIN), get_parent_editlink($parent, __('its original', REVISIONIZE_I18N_DOMAIN)))?></em></div> 334 334 <?php endif; 335 335 } … … 373 373 wp_add_dashboard_widget( 374 374 'revisionize-posts-needing-review', // ID of the widget. 375 __('Revisionized Posts Needing Review' ), // Title of the widget.375 __('Revisionized Posts Needing Review', REVISIONIZE_I18N_DOMAIN), // Title of the widget. 376 376 __NAMESPACE__.'\\do_dashboard_widget' // Callback. 377 377 );
Note: See TracChangeset
for help on using the changeset viewer.