Changeset 1714667
- Timestamp:
- 08/17/2017 11:30:26 AM (9 years ago)
- Location:
- widgets-for-discourse
- Files:
-
- 4 edited
-
tags/0.1/readme.txt (modified) (2 diffs)
-
tags/0.2/readme.txt (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/widget.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
widgets-for-discourse/tags/0.1/readme.txt
r1714356 r1714667 5 5 Requires at least: 4.6 6 6 Tested up to: 4.7 7 Stable tag: 0.2 7 8 License: GPLv2 or later 8 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 35 36 == Changelog == 36 37 38 = 0.2 = 39 * Code Refactoring 40 37 41 = 0.1 = 38 42 * Initial version -
widgets-for-discourse/tags/0.2/readme.txt
r1714356 r1714667 5 5 Requires at least: 4.6 6 6 Tested up to: 4.7 7 Stable tag: 0.2 7 8 License: GPLv2 or later 8 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 35 36 == Changelog == 36 37 38 = 0.2 = 39 * Code Refactoring 40 37 41 = 0.1 = 38 42 * Initial version -
widgets-for-discourse/trunk/readme.txt
r1714356 r1714667 36 36 == Changelog == 37 37 38 = 0.2 = 39 * Code Refactoring 40 38 41 = 0.1 = 39 42 * Initial version -
widgets-for-discourse/trunk/widget.php
r1714252 r1714667 47 47 <input required class="widefat" type="text" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" value="<?php echo esc_attr( $title ); ?>"> 48 48 <label for="<?php echo $this->get_field_id( 'URL' ); ?>">URL:</label> 49 <input required class="widefat" type="text" id="<?php echo $this->get_field_id( 'URL' ); ?>" name="<?php echo $this->get_field_name( 'URL' ); ?>" value="<?php echo esc_attr( $URL ); ?>">49 <input type="url" required class="widefat" type="text" id="<?php echo $this->get_field_id( 'URL' ); ?>" name="<?php echo $this->get_field_name( 'URL' ); ?>" value="<?php echo esc_attr( $URL ); ?>"> 50 50 <label for="<?php echo $this->get_field_id( 'Order' ); ?>">Order:</label> 51 51 <select name="<?php echo $this->get_field_name( 'Order' ); ?>" id="<?php echo $this->get_field_id( 'Order' ); ?>">
Note: See TracChangeset
for help on using the changeset viewer.