PluginProbe
FluentBoards – Project Management, Task Management, Goal Tracking, Kanban Board, and, Team Collaboration / 2.1.0
FluentBoards – Project Management, Task Management, Goal Tracking, Kanban Board, and, Team Collaboration v2.1.0
2.1.0 2.0.15 2.0.12 2.0.10 2.0.4 2.0.1 2.0.0 1.95.3 1.95.2 1.95 1.91.6 trunk 1.11 1.12 1.13 1.20 1.21 1.22 1.23 1.30 1.31 1.32 1.35 1.40 1.41 All 42 releases
← All changes | app/Models/CommentImage.php +2 -4 1.302.1.0 View file →
@@ -13,9 +13,9 @@
13 13 parent::boot();
14 14
15 15 static::creating(function ($model) {
16 16 $uid = wp_generate_uuid4();
17 - $model->file_hash = md5($uid . mt_rand(0, 1000));
17 + $model->file_hash = md5($uid . wp_rand(0, 1000));
18 18 });
19 19 }
20 20
21 21 public function scopeWithComment($query)
@@ -36,12 +36,10 @@
36 36 return $this->full_url;
37 37 }
38 38 return add_query_arg([
39 39 'fbs' => 1,
40 - 'fbs_comment_image' => $this->file_hash,
41 - 'secure_sign' => md5($this->id . date('YmdH'))
40 + 'fbs_comment_image' => $this->file_hash,
42 41 ], site_url('/index.php'));
43 42 }
44 43
45 44
46 45 }
47 -