PluginProbe
Fluent Support – Helpdesk & Customer Support Ticket System / 2.4.0
Fluent Support – Helpdesk & Customer Support Ticket System v2.4.0
2.4.0 2.3.2 2.3.1 2.3.0 2.2.1 2.2.0 trunk 1.10.0 1.10.1 1.10.2 1.10.3 1.10.4 1.10.5 1.4.0 1.4.1 1.4.2 1.4.5 1.4.6 1.4.7 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 All 68 releases
← All changes | app/Services/Includes/FileSystem.php +1 -1 1.10.22.4.0 View file →
@@ -248,9 +248,9 @@
248 248 * @return array $file
249 249 */
250 250 public function _renameFileName($file)
251 251 {
252 - $prefix = 'fluent_support-' . md5(uniqid(rand())) . '___';
252 + $prefix = 'fluent_support-' . md5(uniqid(wp_rand())) . '___';
253 253 $prefix = apply_filters('fluent_support/uploaded_file_name_prefix', $prefix);
254 254 $file['name'] = $prefix . $file['name'];
255 255 return $file;
256 256 }