Plugin Directory

Changeset 544457


Ignore:
Timestamp:
05/15/2012 01:05:48 PM (14 years ago)
Author:
digitalnature
Message:

fixed quotes, really!

Location:
ad-manager-for-wp
Files:
9 added
3 edited

Legend:

Unmodified
Added
Removed
  • ad-manager-for-wp/trunk/ad-manager.php

    r544448 r544457  
    22/*
    33Plugin Name: Ad Manager
    4 Version: 0.9.3
     4Version: 0.9.4
    55Plugin URI: http://digitalnature.eu/forum/plugins/ad-manager/
    66Description: Manage ads on your website trough the WP dashboard
     
    3434
    3535  const
    36     VERSION     = '0.9.3',                                             // plugin version
     36    VERSION     = '0.9.4',                                             // plugin version
    3737    ID          = 'ad_manager',                                        // internally used, mostly for text domain
    3838    PROJECT_URI = 'http://digitalnature.eu/forum/plugins/ad-manager/'; // plugin project page
     
    10061006
    10071007      parse_str(stripslashes_deep($_POST['data']), $input);
     1008
     1009      // @see why here: http://php.net/manual/en/function.parse-str.php
     1010      if(get_magic_quotes_gpc())
     1011        $input = stripslashes_deep($input);
     1012
    10081013      $id = isset($input['id']) ? (int)$input['id'] : 1;
    10091014
  • ad-manager-for-wp/trunk/lang/ad-manager.pot

    r544448 r544457  
    33"Project-Id-Version: Ad Manager\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2012-05-15 15:39+0200\n"
     5"POT-Creation-Date: 2012-05-15 15:38+0200\n"
    66"PO-Revision-Date: \n"
    77"Last-Translator: xs\n"
     
    309309msgstr ""
    310310
    311 #: c:\wamp\www\wpmu\wp-content\plugins\ad-manager/ad-types.php:67
    312 msgid "Some HTML tags are disallowed for security reasons (only super-administrators can post unfiltered code)"
    313 msgstr ""
    314 
    315 #: c:\wamp\www\wpmu\wp-content\plugins\ad-manager/ad-types.php:93
     311#: c:\wamp\www\wpmu\wp-content\plugins\ad-manager/ad-types.php:88
    316312msgid "Image w/ link"
    317313msgstr ""
    318314
    319 #: c:\wamp\www\wpmu\wp-content\plugins\ad-manager/ad-types.php:99
     315#: c:\wamp\www\wpmu\wp-content\plugins\ad-manager/ad-types.php:94
    320316msgid "Advertisment"
    321317msgstr ""
    322318
    323 #: c:\wamp\www\wpmu\wp-content\plugins\ad-manager/ad-types.php:111
     319#: c:\wamp\www\wpmu\wp-content\plugins\ad-manager/ad-types.php:106
    324320msgid "Link URI"
    325321msgstr ""
    326322
    327 #: c:\wamp\www\wpmu\wp-content\plugins\ad-manager/ad-types.php:115
     323#: c:\wamp\www\wpmu\wp-content\plugins\ad-manager/ad-types.php:110
    328324msgid "Title"
    329325msgstr ""
    330326
    331 #: c:\wamp\www\wpmu\wp-content\plugins\ad-manager/ad-types.php:119
     327#: c:\wamp\www\wpmu\wp-content\plugins\ad-manager/ad-types.php:114
    332328msgid "Image URI"
    333329msgstr ""
    334330
    335 #: c:\wamp\www\wpmu\wp-content\plugins\ad-manager/ad-types.php:126
     331#: c:\wamp\www\wpmu\wp-content\plugins\ad-manager/ad-types.php:121
    336332msgid "Track click count"
    337333msgstr ""
    338334
    339 #: c:\wamp\www\wpmu\wp-content\plugins\ad-manager/ad-types.php:133
     335#: c:\wamp\www\wpmu\wp-content\plugins\ad-manager/ad-types.php:128
    340336#, php-format
    341337msgid "and auto-disable after %s clicks (0 = no limit)"
    342338msgstr ""
    343339
    344 #: c:\wamp\www\wpmu\wp-content\plugins\ad-manager/ad-types.php:164
     340#: c:\wamp\www\wpmu\wp-content\plugins\ad-manager/ad-types.php:159
    345341msgid "You must provide a valid link URI"
    346342msgstr ""
  • ad-manager-for-wp/trunk/readme.txt

    r544448 r544457  
    6464== Changelog ==
    6565
     66= 0.9.4 =
     67* Fixed re-escaping quotes issue when magic_quotes_gpc is on
     68
    6669= 0.9.3 =
    6770* Code inside the textarea is now escaped for display
Note: See TracChangeset for help on using the changeset viewer.