Plugin Directory

Changeset 2669986


Ignore:
Timestamp:
01/31/2022 04:52:41 PM (4 years ago)
Author:
wppost
Message:

16.25.18

Location:
wp-recall
Files:
497 added
6 edited

Legend:

Unmodified
Added
Removed
  • wp-recall/trunk/add-on/prime-forum/themes/prime-first/templates/pfm-single-forum.php

    r2606964 r2669986  
    1818        <?php pfm_the_forum_icons(); ?>
    1919        <div class="prime-forum-topics">
    20             <span><?php esc_html_e( 'Topics', 'wp-recall' ); ?>:</span><span><?php pfm_the_topic_count(); ?></span>
     20            <span><?php esc_html_e( 'Topics', 'wp-recall' ); ?>: </span><span><?php pfm_the_topic_count(); ?></span>
    2121        </div>
    2222        <div class="prime-last-items">
    2323            <span><?php esc_html_e( 'Last topic', 'wp-recall' ); ?>: <?php pfm_the_last_topic(); ?></span>
    24             <span><?php esc_html_e( 'Last message', 'wp-recall' ); ?><?php pfm_the_last_post(); ?></span>
     24            <span><?php esc_html_e( 'Last message', 'wp-recall' ); ?> <?php pfm_the_last_post(); ?></span>
    2525        </div>
    2626    </div>
  • wp-recall/trunk/add-on/prime-forum/themes/prime-first/templates/pfm-single-topic.php

    r2606964 r2669986  
    1515    </div>
    1616    <div class="prime-last-items">
    17         <span><?php esc_html_e( 'Last message', 'wp-recall' ); ?></span>
    18         <span><?php pfm_the_last_post(); ?></span>
     17        <span><?php esc_html_e( 'Last message', 'wp-recall' ); ?></span> <span><?php pfm_the_last_post(); ?></span>
    1918    </div>
    2019</div>
  • wp-recall/trunk/classes/fields/types/class-rcl-field-text.php

    r2604807 r2669986  
    5050
    5151    function get_input() {
    52         return '<input type="' . $this->type . '" ' . $this->get_pattern() . ' ' . $this->get_maxlength() . ' ' . $this->get_required() . ' ' . $this->get_placeholder() . ' ' . $this->get_class() . ' name="' . $this->input_name . '" id="' . $this->input_id . '" value=\'' . $this->value . '\'/>';
     52        return '<input type="' . $this->type . '" ' . $this->get_pattern() . ' ' . $this->get_maxlength() . ' ' . $this->get_required() . ' ' . $this->get_placeholder() . ' ' . $this->get_class() . ' name="' . $this->input_name . '" id="' . $this->input_id . '" value="' . esc_textarea(wp_unslash($this->value)) . '"/>';
    5353    }
    5454
  • wp-recall/trunk/functions/loginform.php

    r2608937 r2669986  
    22
    33function rcl_login_form() {
    4 
    5     echo wp_kses( rcl_get_authorize_form( 'floatform' ), rcl_kses_allowed_html() );
     4    echo rcl_get_authorize_form( 'floatform' );
    65}
    76
  • wp-recall/trunk/readme.txt

    r2643220 r2669986  
    44Tags: user profile, members, community, private message, forum
    55Requires at least: 4.6
    6 Tested up to: 5.8
    7 Stable tag: 16.25.17
     6Tested up to: 5.9
     7Stable tag: 16.25.18
    88Requires PHP: 7.0
    99License: GPL v2 or later
  • wp-recall/trunk/wp-recall.php

    r2643220 r2669986  
    44  Plugin URI: https://codeseller.ru/?p=69
    55  Description: Фронт-енд профиль, система личных сообщений и рейтинг пользователей на сайте вордпресс.
    6   Version: 16.25.17
     6  Version: 16.25.18
    77  Author: Plechev Andrey
    88  Author URI: https://codeseller.ru/
     
    1717final class WP_Recall {
    1818
    19     public $version = '16.25.17';
     19    public $version = '16.25.18';
    2020    public $child_addons = array();
    2121    public $need_update = false;
Note: See TracChangeset for help on using the changeset viewer.