Plugin Directory

Changeset 153597


Ignore:
Timestamp:
09/10/2009 04:31:42 PM (17 years ago)
Author:
enseitankado
Message:
 
Location:
wp-onlywire-auto-poster/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wp-onlywire-auto-poster/trunk/onlywire-auto-poster.php

    r149044 r153597  
    33 Plugin Name: WP OnlyWire Auto Poster
    44 Plugin URI: http://www.tankado.com/en/onlywire-auto-poster-wordpress-eklentisi
    5  Version: 3.0.1
     5 Version: 3.0.2
    66 Description: Autosubmits a excerpt of a posts to Onlywire when the post published
    77 Author: Özgür Koca
     
    1010/* 
    1111    === 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
    1427   
    1528    2009-07-23 - v3.0a  - OnlyWire'in API'sine gore tags ve comment alanları da gönderiliyor.
     
    2336                        - Submit logs saving to database table for listing
    2437   
    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   
    3440*/
    3541/*  Copyright 2007 Ozgur Koca  (email : [email protected])
     
    7177   
    7278    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');
    7581    $post = get_post($post_ID);
    7682    $permalink = get_permalink($post_ID);
     
    9197    $comments .= $post->post_excerpt;
    9298    $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;
    94102   
    95103    global $wpdb;
  • wp-onlywire-auto-poster/trunk/readme.txt

    r148461 r153597  
    4848== Changelog ==
    4949
     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
    5058= 3.0 =
    5159
     
    5664* OnylWire return values of background transaction intercapted and stored database table and listed.
    5765* 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.