Changeset 153597
- Timestamp:
- 09/10/2009 04:31:42 PM (17 years ago)
- Location:
- wp-onlywire-auto-poster/trunk
- Files:
-
- 2 edited
-
onlywire-auto-poster.php (modified) (5 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-onlywire-auto-poster/trunk/onlywire-auto-poster.php
r149044 r153597 3 3 Plugin Name: WP OnlyWire Auto Poster 4 4 Plugin URI: http://www.tankado.com/en/onlywire-auto-poster-wordpress-eklentisi 5 Version: 3.0. 15 Version: 3.0.2 6 6 Description: Autosubmits a excerpt of a posts to Onlywire when the post published 7 7 Author: Özgür Koca … … 10 10 /* 11 11 === SÜRÜM NOTLARI === 12 13 v2.0 - Base author: lionstarr, http:www.lionstarr.de 12 13 14 2009-09-10 - v3.0.2 - OW'a gönderilen permalink'in kodlanmamasından kayanaklanan otorizasyon hatası giderildi. 15 16 - Authorization problem fixed arise from posting to un-encoded permalink to OnlyWire. 17 18 2009-08-19 - v3.0.1 - Geliştiriciyi destekle düğmesinin döndürdüğü hata düzeltildi. 19 20 - Function of reward button fixed. 21 22 2009-07-29 - v3.0b - OnlyWire'in döndürdüğü sonuçlar yakalandı ve yönetim panelinde listelendi. 23 - Aynı post_id li yazıların tekrardan gönderilmesi engellendi. 24 25 - OnylWire return values of background transaction intercapted and stored database table and listed. 26 - Not submitting already submitted posts to OnlyWire 14 27 15 28 2009-07-23 - v3.0a - OnlyWire'in API'sine gore tags ve comment alanları da gönderiliyor. … … 23 36 - Submit logs saving to database table for listing 24 37 25 2009-07-29 - v3.0b - OnlyWire'in döndürdüğü sonuçlar yakalandı ve yönetim panelinde listelendi. 26 - Aynı post_id li yazıların tekrardan gönderilmesi engellendi. 27 28 - OnylWire return values of background transaction intercapted and stored database table and listed. 29 - Not submitting already submitted posts to OnlyWire 30 31 2009-08-19 - v3.0.1 - Geliştiriciyi destekle düğmesinin döndürdüğü hata düzeltildi. 32 33 - Function of reward button fixed. 38 v2.0 - Base author: lionstarr, http:www.lionstarr.de 39 34 40 */ 35 41 /* Copyright 2007 Ozgur Koca (email : [email protected]) … … 71 77 72 78 global $onlywire_table_name; 73 $username = get_option( 'onlywire_username');74 $password = get_option( 'onlywire_password');79 $username = get_option('onlywire_username'); 80 $password = get_option('onlywire_password'); 75 81 $post = get_post($post_ID); 76 82 $permalink = get_permalink($post_ID); … … 91 97 $comments .= $post->post_excerpt; 92 98 $comments = trim($comments); 93 $url="http://$username:[email protected]/api/add?url=".$permalink."&title=".urlencode($post->post_title)."&tags=".urlencode($tags)."&comments=".urlencode($comments); 99 $url="http://$username:[email protected]/api/add?url=".urlencode($permalink)."&title=".urlencode($post->post_title)."&tags=".urlencode($tags)."&comments=".urlencode($comments); 100 101 echo $url; 94 102 95 103 global $wpdb; -
wp-onlywire-auto-poster/trunk/readme.txt
r148461 r153597 48 48 == Changelog == 49 49 50 = 3.0.2 = 51 52 * Authorization problem fixed arise from posting to un-encoded permalink to OnlyWire. 53 54 = 3.0.1 = 55 56 * Function of reward button fixed 57 50 58 = 3.0 = 51 59 … … 56 64 * OnylWire return values of background transaction intercapted and stored database table and listed. 57 65 * Not submitting already submitted posts to OnlyWire 58 59 = 3.0.1 =60 61 * Function of reward button fixed
Note: See TracChangeset
for help on using the changeset viewer.