wpForo Forum - Version 1.6.4

Version Description

Download this release

Release Info

Developer Tomdever
Plugin Icon 128x128 wpForo Forum
Version 1.6.4
Comparing to
See all releases

Code changes from version 1.6.3 to 1.6.4

readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: gVectors Team
3
  Tags: forum, forums, forum plugin, WordPress forum plugin, community, discussion
4
  Requires at least: 4.1
5
  Tested up to: 5.2
6
- Stable tag: 1.6.3
7
  Requires PHP: 5.6 and higher
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
@@ -164,6 +164,24 @@ Find wpForo forum plugin addons on [gVectors Team website...](https://gvectors.c
164
 
165
  == Changelog ==
166
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
167
  = wpForo Forum 1.6.3 | 01.09.2019 =
168
 
169
  [wpForo Forum v1.6.3 Release Summary](https://wpforo.com/community/wpforo-announcements/wpforo-1-6-3-is-released/)
@@ -197,14 +215,6 @@ Find wpForo forum plugin addons on [gVectors Team website...](https://gvectors.c
197
  * Fixed Bug: Strip shortcodes in forum search result
198
  * Fixed Bug: Other small bugs.
199
 
200
- IMPORTANT NOTES for UPDATE
201
-
202
- - If you're updating from wpForo Forum versions less than 1.6.0, please read the "Important notes and update" section of 1.6.0 version below.
203
- - Forum template files are modified. If you have an old customized copies of forum template files in your WP theme /wpforo/ folder please update them.
204
- - To load your customized colors please refresh forum front-end page twice.
205
- - If you have a Cache Plugin, please delete all caches after wpForo update.
206
- - If you use CDN and found some issue please purge it.
207
-
208
 
209
  = wpForo Forum 1.6.2 | 11.07.2019 =
210
 
3
  Tags: forum, forums, forum plugin, WordPress forum plugin, community, discussion
4
  Requires at least: 4.1
5
  Tested up to: 5.2
6
+ Stable tag: 1.6.4
7
  Requires PHP: 5.6 and higher
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
164
 
165
  == Changelog ==
166
 
167
+ = wpForo Forum 1.6.4 | 03.09.2019 =
168
+
169
+ [wpForo Forum v1.6.4 Release Summary](https://wpforo.com/community/wpforo-announcements/wpforo-1-6-4-is-released/)
170
+
171
+ * Fixed Bug: Spurious question marks in texts
172
+ * Fixed Bug: Empty topic and reply titles
173
+ * Fixed Bug: New registered users are not able to post new topics and replies if the email confirmation option is disabled.
174
+
175
+ IMPORTANT NOTES for UPDATE
176
+
177
+ - If you're updating from wpForo Forum versions less than 1.6.0, please read the "Important notes and update" section of 1.6.0 version below.
178
+ - Forum template files are modified. If you have an old customized copies of forum template files in your WP theme /wpforo/ folder please update them.
179
+ - To load your customized colors please refresh forum front-end page twice.
180
+ - If you have a Cache Plugin, please delete all caches after wpForo update.
181
+ - If you use CDN and found some issue please purge it.
182
+
183
+
184
+
185
  = wpForo Forum 1.6.3 | 01.09.2019 =
186
 
187
  [wpForo Forum v1.6.3 Release Summary](https://wpforo.com/community/wpforo-announcements/wpforo-1-6-3-is-released/)
215
  * Fixed Bug: Strip shortcodes in forum search result
216
  * Fixed Bug: Other small bugs.
217
 
 
 
 
 
 
 
 
 
218
 
219
  = wpForo Forum 1.6.2 | 11.07.2019 =
220
 
wpf-includes/class-members.php CHANGED
@@ -64,8 +64,10 @@ class wpForoMember{
64
 
65
  private function init_hooks(){
66
  add_action('delete_user_form', array($this, 'show_delete_form'), 10, 2);
67
- add_action('register_new_user', array($this, 'after_register_new_user'));
68
- add_action('after_password_reset', array($this, 'after_password_reset'));
 
 
69
  }
70
 
71
  public function get_cache( $var ){
64
 
65
  private function init_hooks(){
66
  add_action('delete_user_form', array($this, 'show_delete_form'), 10, 2);
67
+ //Problem with disabled "Email Confirmation" option
68
+ //Not tested with other plugins registration forms
69
+ //add_action('register_new_user', array($this, 'after_register_new_user'));
70
+ //add_action('after_password_reset', array($this, 'after_password_reset'));
71
  }
72
 
73
  public function get_cache( $var ){
wpf-includes/functions-installation.php CHANGED
@@ -552,6 +552,10 @@ function wpforo_activation(){
552
  }
553
  }
554
 
 
 
 
 
555
  #################################################################
556
  // CHECK Addon Notice /////////////////////////////////////////
557
  $lastHash = get_option('wpforo-addon-note-dismissed');
552
  }
553
  }
554
 
555
+ #################################################################
556
+ // Only this version (revert inactive users back)
557
+ @WPF()->db->query( "UPDATE `" . WPF()->tables->profiles . "` SET `status` = 'active' WHERE `status` = 'inactive'" );
558
+
559
  #################################################################
560
  // CHECK Addon Notice /////////////////////////////////////////
561
  $lastHash = get_option('wpforo-addon-note-dismissed');
wpf-includes/functions.php CHANGED
@@ -862,7 +862,7 @@ function wpforo_text( $text, $length = 0, $echo = true, $strip_tags = true, $str
862
  }
863
  $text = apply_filters('wpforo_text', $text, $length, $echo, $strip_tags, $strip_urls, $strip_shortcodes, $strip_quotes);
864
 
865
- $text = trim( str_replace("\xA0", ' ', $text ) );
866
 
867
  if(!$length){
868
  if($echo){
862
  }
863
  $text = apply_filters('wpforo_text', $text, $length, $echo, $strip_tags, $strip_urls, $strip_shortcodes, $strip_quotes);
864
 
865
+ $text = trim( str_replace("\xc2\xa0", ' ', $text ) );
866
 
867
  if(!$length){
868
  if($echo){
wpforo.php CHANGED
@@ -5,14 +5,14 @@
5
  * Description: WordPress Forum plugin. wpForo is a full-fledged forum solution for your community. Comes with multiple modern forum layouts.
6
  * Author: gVectors Team (A. Chakhoyan, R. Hovhannisyan)
7
  * Author URI: https://gvectors.com/
8
- * Version: 1.6.3
9
  * Text Domain: wpforo
10
  * Domain Path: /wpf-languages
11
  */
12
 
13
  //Exit if accessed directly
14
  if( !defined( 'ABSPATH' ) ) exit;
15
- if( !defined( 'WPFORO_VERSION' ) ) define('WPFORO_VERSION', '1.6.3');
16
 
17
  function wpforo_load_plugin_textdomain() { load_plugin_textdomain( 'wpforo', FALSE, basename( dirname( __FILE__ ) ) . '/wpf-languages/' ); }
18
  add_action( 'plugins_loaded', 'wpforo_load_plugin_textdomain' );
5
  * Description: WordPress Forum plugin. wpForo is a full-fledged forum solution for your community. Comes with multiple modern forum layouts.
6
  * Author: gVectors Team (A. Chakhoyan, R. Hovhannisyan)
7
  * Author URI: https://gvectors.com/
8
+ * Version: 1.6.4
9
  * Text Domain: wpforo
10
  * Domain Path: /wpf-languages
11
  */
12
 
13
  //Exit if accessed directly
14
  if( !defined( 'ABSPATH' ) ) exit;
15
+ if( !defined( 'WPFORO_VERSION' ) ) define('WPFORO_VERSION', '1.6.4');
16
 
17
  function wpforo_load_plugin_textdomain() { load_plugin_textdomain( 'wpforo', FALSE, basename( dirname( __FILE__ ) ) . '/wpf-languages/' ); }
18
  add_action( 'plugins_loaded', 'wpforo_load_plugin_textdomain' );