Changeset 1011012
- Timestamp:
- 10/21/2014 12:33:48 AM (11 years ago)
- Location:
- hookpress/trunk
- Files:
-
- 3 edited
-
hookpress.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
-
test.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
hookpress/trunk/hookpress.php
r946580 r1011012 4 4 Plugin URI: http://mitcho.com/code/hookpress/ 5 5 Description: 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.1 26 Version: 1.13 7 7 Author: mitcho (Michael Yoshitaka Erlewine) 8 8 Author URI: http://mitcho.com/ … … 11 11 12 12 define('HOOKPRESS_PRIORITY',12838790321); 13 $hookpress_version = "1.1 2";13 $hookpress_version = "1.13"; 14 14 require('includes.php'); 15 15 -
hookpress/trunk/readme.txt
r1010325 r1011012 42 42 43 43 = 1.13 = 44 * Important security fix to the test endpoint, `test.php`. 44 45 * Code cleanup, fix bugs introduced in previous version. 45 46 -
hookpress/trunk/test.php
r479469 r1011012 18 18 $print = print_r($_REQUEST,true); 19 19 20 `echo '$print' >> test.log`; 20 $log = fopen('test.log', 'a'); 21 fwrite($log, $print); 21 22 22 23 echo array_shift($_REQUEST);
Note: See TracChangeset
for help on using the changeset viewer.