Changeset 1390707
- Timestamp:
- 04/09/2016 01:11:35 AM (10 years ago)
- Location:
- tweet-wheel/trunk/includes
- Files:
-
- 2 edited
-
classes/class-twp-schedule.php (modified) (1 diff)
-
views/auth.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tweet-wheel/trunk/includes/classes/class-twp-schedule.php
r1356848 r1390707 475 475 </li> 476 476 </ul> 477 <?php $times = $this->get_weekly_times( 0); ?>477 <?php $times = $this->get_weekly_times(6); ?> 478 478 <ul id="twp-times-day-6" data-day="6" class="times"> 479 479 <?php -
tweet-wheel/trunk/includes/views/auth.php
r1356848 r1390707 32 32 <label> 33 33 Consumer Key: 34 <input style="width:400px" type="text" name="consumer_key" value="<?php echo isset( $_POST['consumer_key'] ) ? $_POST['consumer_key']: ''; ?>">34 <input style="width:400px" type="text" name="consumer_key" value="<?php echo isset( $_POST['consumer_key'] ) ? esc_attr( $_POST['consumer_key'] ) : ''; ?>"> 35 35 </label> 36 36 </p> … … 38 38 <label> 39 39 Consumer Secret: 40 <input style="width:400px" type="text" name="consumer_secret" value="<?php echo isset( $_POST['consumer_secret'] ) ? $_POST['consumer_secret']: ''; ?>">40 <input style="width:400px" type="text" name="consumer_secret" value="<?php echo isset( $_POST['consumer_secret'] ) ? esc_attr( $_POST['consumer_secret'] ) : ''; ?>"> 41 41 </label> 42 42 </p> … … 44 44 <label> 45 45 Access Token: 46 <input style="width:400px" type="text" name="access_token" value="<?php echo isset( $_POST['access_token'] ) ? $_POST['access_token']: ''; ?>">46 <input style="width:400px" type="text" name="access_token" value="<?php echo isset( $_POST['access_token'] ) ? esc_attr( $_POST['access_token'] ) : ''; ?>"> 47 47 </label> 48 48 </p> … … 50 50 <label> 51 51 Access Token Secret: 52 <input style="width:400px" type="text" name="access_token_secret" value="<?php echo isset( $_POST['access_token_secret'] ) ? $_POST['access_token_secret']: ''; ?>">52 <input style="width:400px" type="text" name="access_token_secret" value="<?php echo isset( $_POST['access_token_secret'] ) ? esc_attr( $_POST['access_token_secret'] ) : ''; ?>"> 53 53 </label> 54 54 </p>
Note: See TracChangeset
for help on using the changeset viewer.