Make WordPress Core


Ignore:
Timestamp:
03/20/2008 04:39:23 AM (17 years ago)
Author:
markjaquith
Message:

Multi-widgets should never be removed if you click cancel. props mdawaffe. fixes #6291

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/widgets.php

    r7362 r7411  
    639639            <input class="widefat" id="text-title-<?php echo $number; ?>" name="widget-text[<?php echo $number; ?>][title]" type="text" value="<?php echo $title; ?>" />
    640640            <textarea class="widefat" rows="16" cols="20" id="text-text-<?php echo $number; ?>" name="widget-text[<?php echo $number; ?>][text]"><?php echo $text; ?></textarea>
    641             <input type="hidden" id="text-submit-<?php echo $number; ?>" name="text-submit-<?php echo $number; ?>" value="1" />
     641            <input type="hidden" name="widget-text[<?php echo $number; ?>][submit]" value="1" />
    642642        </p>
    643643<?php
     
    799799            </p>
    800800
    801             <input type="hidden" id="categories-submit-<?php echo $number; ?>" name="categories-submit-<?php echo $number; ?>" value="1" />
     801            <input type="hidden" name="widget-categories[<?php echo $number; ?>][submit]" value="1" />
    802802<?php
    803803}
     
    12551255        </label>
    12561256    </p>
    1257     <input type="hidden" id="rss-submit-<?php echo $number; ?>" name="rss-submit-<?php echo $number; ?>" value="1" />
     1257    <input type="hidden" name="widget-rss[<?php echo $number; ?>][submit]" value="1" />
    12581258<?php
    12591259    endif;
     
    14841484        <p>
    14851485            <input class="widefat" id="widget-many-something-<?php echo $number; ?>" name="widget-many[<?php echo $number; ?>][something]" type="text" value="<?php echo $data; ?>" />
    1486             <input type="hidden" id="widget-many-submit-<?php echo $number; ?>" name="widget-many-<?php echo $number; ?>" value="1" />
     1486            <input type="hidden" id="widget-many-submit-<?php echo $number; ?>" name="widget-many[<?php echo $number; ?>][submit]" value="1" />
    14871487        </p>
    14881488<?php
Note: See TracChangeset for help on using the changeset viewer.