Plugin Directory

Changeset 1731062


Ignore:
Timestamp:
09/17/2017 01:32:08 AM (9 years ago)
Author:
wmoisesd
Message:
  • Fixed bug over PHP 5.3
Location:
pse-pornoscraperexecutor
Files:
1 added
2 edited
2 copied

Legend:

Unmodified
Added
Removed
  • pse-pornoscraperexecutor/tags/1.0.2/PSE.php

    r1729561 r1731062  
    192192                    $titulo = str_replace(" ", "_", $titulo);
    193193
    194                     $filename = realpath(wp_upload_dir()['path'])."/".$titulo.".".$filetype['ext'];
     194                    $upldir = wp_upload_dir();
     195
     196                    $filename = realpath($upldir['path'])."/".$titulo.".".$filetype['ext'];
    195197
    196198                    file_put_contents($filename, $datosimagen);
  • pse-pornoscraperexecutor/tags/1.0.2/readme.txt

    r1729561 r1731062  
    5858== Changelog ==
    5959
     60=1.0.2=
     61* Fixed bug over PHP 5.3
     62
    6063= 1.0.1 =
    6164* Bug correction: now PSE alerts if permalinks are disabled
  • pse-pornoscraperexecutor/trunk/PSE.php

    r1729561 r1731062  
    192192                    $titulo = str_replace(" ", "_", $titulo);
    193193
    194                     $filename = realpath(wp_upload_dir()['path'])."/".$titulo.".".$filetype['ext'];
     194                    $upldir = wp_upload_dir();
     195
     196                    $filename = realpath($upldir['path'])."/".$titulo.".".$filetype['ext'];
    195197
    196198                    file_put_contents($filename, $datosimagen);
  • pse-pornoscraperexecutor/trunk/readme.txt

    r1729561 r1731062  
    5858== Changelog ==
    5959
     60=1.0.2=
     61* Fixed bug over PHP 5.3
     62
    6063= 1.0.1 =
    6164* Bug correction: now PSE alerts if permalinks are disabled
Note: See TracChangeset for help on using the changeset viewer.