Plugin Directory

Changeset 1258411


Ignore:
Timestamp:
10/02/2015 06:17:09 PM (11 years ago)
Author:
fherryfherry
Message:

1.0.8

  • fix str_ireplace to str_replace
Location:
wpostgrabber/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wpostgrabber/trunk/readme.txt

    r1257636 r1258411  
    9494* change setting to own page setting
    9595
     96= 1.0.8 =
     97* fix str_ireplace to str_replace
     98
    9699== Upgrade Notice ==
    97100
     
    122125* improve desain
    123126* change setting to own page setting
     127
     128= 1.0.8 =
     129* fix str_ireplace to str_replace
  • wpostgrabber/trunk/wpostgrabber.php

    r1257633 r1258411  
    22/**
    33 * @package WPostGrabber
    4  * @version 1.0.7
     4 * @version 1.0.8
    55 */
    66/*
     
    99Description: WPostGrabber, this plugin will help you to get your content on the website that you want instantly.
    1010Author: Ferry Ariawan
    11 Version: 1.0.7
     11Version: 1.0.8
    1212Author URI: http://websprogramming.com/
    1313*/
     
    5757            $url_image = media_sideload_image($src,$post_id,$title,'src');
    5858            if($url_image) {
    59             $content = str_ireplace($src,$url_image,$content);
     59            $content = str_replace($src,$url_image,$content);
    6060            $post_arr = array(
    6161                  'ID'           => $post_id,                 
Note: See TracChangeset for help on using the changeset viewer.