💦 FULL SET: Changeset/ - Uncensored 2025

Changeset 1011012


Ignore:
Timestamp:
10/21/2014 12:33:48 AM (11 years ago)
Author:
mitchoyoshitaka
Message:

security fix and bump to 1.13

Location:
hookpress/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • hookpress/trunk/hookpress.php

    r946580 r1011012  
    44Plugin URI: http://mitcho.com/code/hookpress/
    55Description: HookPress turns all of your WordPress-internal hooks into webhooks. Possible uses include generating push notifications or using non-PHP web technology to extend WordPress. Read more about webhooks at <a href='http://webhooks.org/'>the webhooks site</a>.
    6 Version: 1.12
     6Version: 1.13
    77Author: mitcho (Michael Yoshitaka Erlewine)
    88Author URI: http://mitcho.com/
     
    1111
    1212define('HOOKPRESS_PRIORITY',12838790321);
    13 $hookpress_version = "1.12";
     13$hookpress_version = "1.13";
    1414require('includes.php');
    1515
  • hookpress/trunk/readme.txt

    r1010325 r1011012  
    4242
    4343= 1.13 =
     44* Important security fix to the test endpoint, `test.php`.
    4445* Code cleanup, fix bugs introduced in previous version.
    4546
  • hookpress/trunk/test.php

    r479469 r1011012  
    1818$print = print_r($_REQUEST,true);
    1919
    20 `echo '$print' >> test.log`;
     20$log = fopen('test.log', 'a');
     21fwrite($log, $print);
    2122
    2223echo array_shift($_REQUEST);
Note: See TracChangeset for help on using the changeset viewer.