Plugin Directory

Changeset 1167931


Ignore:
Timestamp:
05/26/2015 07:40:40 PM (11 years ago)
Author:
racanu
Message:

Fixed hardcoded path to admin_url

Location:
keep-in-touch
Files:
2 edited
12 copied

Legend:

Unmodified
Added
Removed
  • keep-in-touch/tags/1.0.5/keep-in-touch.php

    r1086356 r1167931  
    293293           
    294294            '<h2>' . __('Digest delivery settings', 'keep-in-touch') . '</h2>' .
    295             '<form method="POST" action="/wordpress/wp-admin/options-general.php?page=keep-in-touch">' .
     295            '<form method="POST" action="' . admin_url('options-general.php?page=keep-in-touch') . '">' .
    296296            '<input type="hidden" name="form" value="keep_in_touch_digest_delivery_settings" />' .
    297297            '<table class="form-table"><tr>' .
     
    328328
    329329            '<h2>' . __('Send digest now', 'keep-in-touch') . '</h2>' .
    330             '<form method="POST" action="/wordpress/wp-admin/options-general.php?page=keep-in-touch">' .
     330            '<form method="POST" action="' . admin_url('options-general.php?page=keep-in-touch') . '">' .
    331331            '<input type="hidden" name="form" value="keep_in_touch_send_digest_now" />' .
    332332            '<table class="form-table"><tr>' .
     
    342342       
    343343            '<h2>' . __('Newsletter', 'keep-in-touch') . '</h2>' .
    344             '<form method="POST" action="/wordpress/wp-admin/options-general.php?page=keep-in-touch">' .
     344            '<form method="POST" action="' . admin_url('options-general.php?page=keep-in-touch') . '">' .
    345345            '<input type="hidden" name="form" value="keep_in_touch_send_newsletter" />' .
    346346            '<table class="form-table"><tr>' .
  • keep-in-touch/tags/1.0.5/readme.txt

    r1167906 r1167931  
    44Requires at least: 4.1
    55Tested up to: 4.2
    6 Stable tag: 1.0.4
     6Stable tag: 1.0.5
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8181== Changelog ==
    8282
     83= 1.0.5 =
     84* Fixed hardcoded path to admin_url. Thanks to msorin for reporting it.
     85
    8386= 1.0.4 =
    8487* Added RSS icon to access the posts feed
  • keep-in-touch/trunk/keep-in-touch.php

    r1086356 r1167931  
    293293           
    294294            '<h2>' . __('Digest delivery settings', 'keep-in-touch') . '</h2>' .
    295             '<form method="POST" action="/wordpress/wp-admin/options-general.php?page=keep-in-touch">' .
     295            '<form method="POST" action="' . admin_url('options-general.php?page=keep-in-touch') . '">' .
    296296            '<input type="hidden" name="form" value="keep_in_touch_digest_delivery_settings" />' .
    297297            '<table class="form-table"><tr>' .
     
    328328
    329329            '<h2>' . __('Send digest now', 'keep-in-touch') . '</h2>' .
    330             '<form method="POST" action="/wordpress/wp-admin/options-general.php?page=keep-in-touch">' .
     330            '<form method="POST" action="' . admin_url('options-general.php?page=keep-in-touch') . '">' .
    331331            '<input type="hidden" name="form" value="keep_in_touch_send_digest_now" />' .
    332332            '<table class="form-table"><tr>' .
     
    342342       
    343343            '<h2>' . __('Newsletter', 'keep-in-touch') . '</h2>' .
    344             '<form method="POST" action="/wordpress/wp-admin/options-general.php?page=keep-in-touch">' .
     344            '<form method="POST" action="' . admin_url('options-general.php?page=keep-in-touch') . '">' .
    345345            '<input type="hidden" name="form" value="keep_in_touch_send_newsletter" />' .
    346346            '<table class="form-table"><tr>' .
  • keep-in-touch/trunk/readme.txt

    r1167906 r1167931  
    44Requires at least: 4.1
    55Tested up to: 4.2
    6 Stable tag: 1.0.4
     6Stable tag: 1.0.5
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8181== Changelog ==
    8282
     83= 1.0.5 =
     84* Fixed hardcoded path to admin_url. Thanks to msorin for reporting it.
     85
    8386= 1.0.4 =
    8487* Added RSS icon to access the posts feed
Note: See TracChangeset for help on using the changeset viewer.