Plugin Directory

Changeset 3200313


Ignore:
Timestamp:
12/01/2024 05:36:18 PM (16 months ago)
Author:
oooorgle
Message:

Fix - Some WordPress Plugin Check fixes.
Change - Updated plugin license to GPLv3.

Location:
rss-llama
Files:
25 added
14 edited

Legend:

Unmodified
Added
Removed
  • rss-llama/trunk/class-rssllama.php

    r3155031 r3200313  
    11<?php
    22/**
    3  * Plugin Name: Rss llama
    4  * Plugin URI:  http://wordpress.org/plugins/rss-llama/
    5  * Version:     2.0.0
     3 * Plugin Name: RSS llama
     4 * Plugin URI:  https://oooorgle.com/plugins/wp/rss-llama/
     5 * Version:     2.0.1
    66 * Description: Categorize your rss feeds into a useful page.
    77 * Author:      oooorgle
    88 * Author URI:  https://oooorgle.com/plugins/wp/rss-llama/
    99 * Text Domain: rss-llama
    10  * Domain Path: /lang
    1110 *
    1211 * @package     rss-llama
    13  * License:     CopyHeart
    14  * License URI: https://oooorgle.com/copyheart
     12 * License:     GPLv3
     13 * License URI: https://www.gnu.org/licenses/gpl-3.0.html
    1514 */
    1615
     
    2827
    2928// Plugin version.
    30 defined( 'RL_PLUGIN_VERSION' ) || define( 'RL_PLUGIN_VERSION', '2.0.0' );
     29defined( 'RL_PLUGIN_VERSION' ) || define( 'RL_PLUGIN_VERSION', '2.0.1' );
    3130
    3231/**
     
    732731
    733732        if ( 'nonce' === $yaynay ) {
    734             return '<div class="error rlmsg"><p>' . esc_html__( 'Security token mismatch, please reload the page and try again.', 'quotes-llama' ) . '</p></div>';
     733            return '<div class="error rlmsg"><p>' . esc_html__( 'Security token mismatch, please reload the page and try again.', 'rss-llama' ) . '</p></div>';
    735734        }
    736735    }
     
    871870                    $to,
    872871                    $blog . ': ' . $subject,
    873                     esc_html__( 'Submitted by:' ) .
     872                    esc_html__( 'Submitted by:', 'rss-llama' ) .
    874873                    wp_kses_post( $ip . ' - ' . $agent ) . " \r\n" .
    875                     esc_html__( 'Referred Link:' ) .
     874                    esc_html__( 'Referred Link:', 'rss-llama' ) .
    876875                    wp_kses_post( $link ) . " \r\n" .
    877                     esc_html__( 'Submitted from:' ) .
     876                    esc_html__( 'Submitted from:', 'rss-llama' ) .
    878877                    wp_kses_post( $referer ) . " \r\n\r\n" .
    879                     esc_html__( 'Description:' ) .
     878                    esc_html__( 'Description:', 'rss-llama' ) .
    880879                    wp_kses_post( $message ),
    881880                    implode( "\n", $headers )
     
    13651364                        <?php echo wp_kses_post( $item_description ) . ' '; ?>
    13661365                        <a href = '<?php echo esc_url( $item_permalink ); ?>'
    1367                             title = '<?php esc_attr_e( 'View the Post: ' ); ?><?php echo esc_attr( $item_title ); ?>'
     1366                            title = '<?php esc_attr_e( 'View the Post: ', 'rss-llama' ); ?><?php echo esc_attr( $item_title ); ?>'
    13681367                            target = '_blank'>
    13691368                            <span class = 'dashicons-before dashicons-admin-page'></span>
     
    14411440                        href = '<?php echo esc_url( $summary ); ?>'
    14421441                        target = '_blank'>
    1443                         <?php esc_html_e( '(Feed Error) - ' ); ?>
     1442                        <?php esc_html_e( '(Feed Error) - ', 'rss-llama' ); ?>
    14441443                        <?php echo esc_html( $rss->get_error_message() ); ?>
    14451444                        <span>
  • rss-llama/trunk/includes/classes/class-rssllama-admin.php

    r3155031 r3200313  
    88 * @package     rss-llama
    99 * @since       2.0.0
    10  * License:     CopyHeart
    11  * License URI: https://oooorgle.com/copyheart
     10 * License:     GPLv3
     11 * License URI: https://www.gnu.org/licenses/gpl-3.0.html
    1212 */
    1313
     
    958958            add_settings_field(
    959959                'rss_llama_refer_requesttext',
    960                 esc_html__( 'Submit Link Text' ),
     960                esc_html__( 'Submit Link Text', 'rss-llama' ),
    961961                array( $this, 'refer_requesttext_callback' ),
    962962                'rss-llama',
  • rss-llama/trunk/includes/classes/class-rssllama-backup.php

    r3155031 r3200313  
    88 * @package     rss-llama
    99 * @since       2.0.0
    10  * License:     CopyHeart
    11  * License URI: https://oooorgle.com/copyheart
     10 * License:     GPLv3
     11 * License URI: https://www.gnu.org/licenses/gpl-3.0.html
    1212 */
    1313
     
    259259                    // Validate has data.
    260260                    if ( ! $json_data ) {
    261                         return esc_html__( 'Unable to import because the file is empty.' );
     261                        return esc_html__( 'Unable to import because the file is empty.', 'rss-llama' );
    262262                    }
    263263
     
    403403            }
    404404        } else {
    405             return esc_html__( 'Security token mismatch, please reload the page and try again.', 'quotes-llama' );
     405            return esc_html__( 'Security token mismatch, please reload the page and try again.', 'rss-llama' );
    406406        }
    407407    }
  • rss-llama/trunk/includes/css/index.php

    r3155031 r3200313  
    11<?php
    2 
    32// Silence is golden.
    4 
    53?>
  • rss-llama/trunk/includes/js/index.php

    r3155031 r3200313  
    11<?php
    2 
    3 
    42// Silence is golden.
    5 
    6 
    73?>
  • rss-llama/trunk/includes/js/rss-llama-functions.js

    r3155031 r3200313  
    77 * @package     rss-llama
    88 * @since       1.0
    9  * License:     CopyHeart
    10  * License URI: https://oooorgle.com/copyheart
     9 * License:     GPLv3
     10 * License URI: https://www.gnu.org/licenses/gpl-3.0.html
    1111 */
    1212
  • rss-llama/trunk/includes/js/rss-llama-rewrite-rules.js

    r3155031 r3200313  
    77 * @package     rss-llama
    88 * @since       1.0
    9  * License:     CopyHeart
    10  * License URI: https://oooorgle.com/copyheart
     9 * License:     GPLv3
     10 * License URI: https://www.gnu.org/licenses/gpl-3.0.html
    1111 */
    1212
  • rss-llama/trunk/includes/js/rss-llama-single.js

    r3155031 r3200313  
    77 * @package     rss-llama
    88 * @since       1.0
    9  * License:     CopyHeart
    10  * License URI: https://oooorgle.com/copyheart
     9 * License:     GPLv3
     10 * License URI: https://www.gnu.org/licenses/gpl-3.0.html
    1111 */
    1212
  • rss-llama/trunk/includes/js/rss-llama-summary.js

    r3155031 r3200313  
    77 * @package     rss-llama
    88 * @since       1.0
    9  * License:     CopyHeart
    10  * License URI: https://oooorgle.com/copyheart
     9 * License:     GPLv3
     10 * License URI: https://www.gnu.org/licenses/gpl-3.0.html
    1111 */
    1212
  • rss-llama/trunk/includes/js/rss-llama-wafer.js

    r3155031 r3200313  
    77 * @package     rss-llama
    88 * @since       1.0
    9  * License:     CopyHeart
    10  * License URI: https://oooorgle.com/copyheart
     9 * License:     GPLv3
     10 * License URI: https://www.gnu.org/licenses/gpl-3.0.html
    1111 */
    1212
  • rss-llama/trunk/includes/php/export-csv.php

    r3155031 r3200313  
    88 * @package     rss-llama
    99 * @since       2.0.0
    10  * License:     CopyHeart
    11  * License URI: https://oooorgle.com/copyheart
     10 * License:     GPLv3
     11 * License URI: https://www.gnu.org/licenses/gpl-3.0.html
    1212 */
    1313
  • rss-llama/trunk/includes/php/export-json.php

    r3155031 r3200313  
    88 * @package     rss-llama
    99 * @since       2.0.0
    10  * License:     CopyHeart
    11  * License URI: https://oooorgle.com/copyheart
     10 * License:     GPLv3
     11 * License URI: https://www.gnu.org/licenses/gpl-3.0.html
    1212 */
    1313
  • rss-llama/trunk/includes/php/import.php

    r3155031 r3200313  
    88 * @package     rss-llama
    99 * @since       2.0.0
    10  * License:     CopyHeart
    11  * License URI: https://oooorgle.com/copyheart
     10 * License:     GPLv3
     11 * License URI: https://www.gnu.org/licenses/gpl-3.0.html
    1212 */
    1313
  • rss-llama/trunk/readme.txt

    r3155031 r3200313  
    44Tags: rss, feed, reader, subscribe
    55Requires at least: 4.2.2
    6 Tested up to: 6.6.2
    7 Stable tag: 2.0.0
     6Tested up to: 6.7.1
     7Stable tag: 2.0.1
    88Requires PHP: 7.0
    9 License: CopyHeart
    10 License URI: https://oooorgle.com/copyheart
     9License: GPLv3
     10License URI: https://www.gnu.org/licenses/gpl-3.0.html
    1111
    1212Categorize your rss feeds into a useful page.
     
    4040== Frequently Asked Questions ==
    4141* "What is the Links Manager?"
    42  * As of WordPress 3.5. The Links Manager is hidden by default. Learn more: [About Links Manager](https://codex.wordpress.org/Links_Manager)
     42 * As of WordPress 3.5. The Links Manager is hidden by default. Rss Llama should enable the link manager. If you encounte problems you can learn more: [About Links Manager](https://codex.wordpress.org/Links_Manager)
    4343* "But I have a lot of links - I don't want feeds from them all. Is this all or nothing?"
    4444 * You can display all links or just links from a specific category.
     
    7676== Changelog ==
    7777= Upgrade Notice =
    78 * Some options have been added or changed... If you encounter difficulty, you may need to verify the option "Reset When Deactivating" is set and saved, then Disable/Enable the plugin. You can also check and Save the options by visiting each tab and clicking Save at the bottom.
    7978* [Version History](https://oooorgle.com/downloads/rss-llama/dev/versions.htm)
    8079
Note: See TracChangeset for help on using the changeset viewer.