Changeset 1964460
- Timestamp:
- 10/28/2018 11:26:03 AM (7 years ago)
- Location:
- block-spam-comment
- Files:
-
- 4 added
- 4 deleted
- 2 edited
-
tags/1.0.0/Block-Spam-Comment.php (modified) (1 diff)
-
tags/1.0.0/languages/Block-Spam-Comment-ja.mo (added)
-
tags/1.0.0/languages/Block-Spam-Comment-ja.po (added)
-
tags/1.0.0/languages/Block-Spam-Comment-ja_JP.mo (deleted)
-
tags/1.0.0/languages/Block-Spam-Comment-ja_JP.po (deleted)
-
trunk/Block-Spam-Comment.php (modified) (1 diff)
-
trunk/languages/Block-Spam-Comment-ja.mo (added)
-
trunk/languages/Block-Spam-Comment-ja.po (added)
-
trunk/languages/Block-Spam-Comment-ja_JP.mo (deleted)
-
trunk/languages/Block-Spam-Comment-ja_JP.po (deleted)
Legend:
- Unmodified
- Added
- Removed
-
block-spam-comment/tags/1.0.0/Block-Spam-Comment.php
r1964452 r1964460 65 65 $bsc_log[] = array( 66 66 'time' => $_SERVER['REQUEST_TIME'], 67 'name' => substr(htmlentities($_POST['author']),0,50),67 'name' => mb_strimwidth(htmlentities($_POST['author']), 0, 50, '…', 'UTF-8'), 68 68 'ip' => htmlentities($ip), 69 'agent' => substr(htmlentities($_SERVER['HTTP_USER_AGENT']),0,200),69 'agent' => mb_strimwidth(htmlentities($_SERVER['HTTP_USER_AGENT']), 0, 200, '…', 'UTF-8'), 70 70 'cause' => $cause, 71 71 'post' => $post_id -
block-spam-comment/trunk/Block-Spam-Comment.php
r1964452 r1964460 65 65 $bsc_log[] = array( 66 66 'time' => $_SERVER['REQUEST_TIME'], 67 'name' => substr(htmlentities($_POST['author']),0,50),67 'name' => mb_strimwidth(htmlentities($_POST['author']), 0, 50, '…', 'UTF-8'), 68 68 'ip' => htmlentities($ip), 69 'agent' => substr(htmlentities($_SERVER['HTTP_USER_AGENT']),0,200),69 'agent' => mb_strimwidth(htmlentities($_SERVER['HTTP_USER_AGENT']), 0, 200, '…', 'UTF-8'), 70 70 'cause' => $cause, 71 71 'post' => $post_id
Note: See TracChangeset
for help on using the changeset viewer.