Changeset 9772 for trunk/src/bp-forums/deprecated/1.6.php
- Timestamp:
- 04/20/2015 03:38:54 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-forums/deprecated/1.6.php
r9517 r9772 104 104 105 105 <div> 106 <a class="button thickbox button-primary" href="<?php echo esc_ attr( $button_url ) ?>"><?php echo esc_html( $button_text ) ?></a> 106 <a class="button thickbox button-primary" href="<?php echo esc_url( $button_url ) ?>"><?php echo esc_html( $button_text ) ?></a> 107 107 </div> 108 108 </div> … … 185 185 <p><?php _e( "You've decided to set up a new installation of bbPress for forum management in BuddyPress. This is very simple and is usually just a one click 186 186 process. When you're ready, hit the link below.", 'buddypress' ) ?></p> 187 <p><a class="button-primary" href="<?php echo wp_nonce_url( $post_url . '&step=new&doinstall=1', 'bp_forums_new_install_init' )?>"><?php _e( 'Complete Installation', 'buddypress' ) ?></a></p>187 <p><a class="button-primary" href="<?php echo esc_url( wp_nonce_url( $post_url . '&step=new&doinstall=1', 'bp_forums_new_install_init' ) ); ?>"><?php _e( 'Complete Installation', 'buddypress' ) ?></a></p> 188 188 189 189 <?php … … 223 223 224 224 <div> 225 <a class="button button-primary" href="<?php echo $post_url. '&step=new' ?>"><?php _e( 'Install Group Forums', 'buddypress' ) ?></a> 226 <a class="button" href="<?php echo $post_url. '&step=existing' ?>"><?php _e( 'Use Existing Installation', 'buddypress' ) ?></a>225 <a class="button button-primary" href="<?php echo esc_url( $post_url ) . '&step=new' ?>"><?php _e( 'Install Group Forums', 'buddypress' ) ?></a> 226 <a class="button" href="<?php echo esc_url( $post_url ) . '&step=existing' ?>"><?php _e( 'Use Existing Installation', 'buddypress' ) ?></a> 227 227 </div> 228 228 </div> … … 246 246 <p><?php printf( __( 'If you decide to use bbPress, you will need to deactivate the legacy group forum component. For more info, <a href="%s">read this codex article</a>.', 'buddypress' ), 'https://codex.buddypress.org/legacy/getting-started/using-bbpress-2-2-with-buddypress/' ) ?></p> 247 247 <div> 248 <a class="button button-primary <?php if ( ! $bbpress_plugin_is_active ) { echo esc_attr( 'thickbox' ); }?>" href="<?php echo esc_ attr( $button_url ) ?>"><?php echo esc_html( $button_text ) ?></a> 248 <a class="button button-primary <?php if ( ! $bbpress_plugin_is_active ) { echo esc_attr( 'thickbox' ); }?>" href="<?php echo esc_url( $button_url ) ?>"><?php echo esc_html( $button_text ) ?></a> 249 249 </div> 250 250 </div>
Note: See TracChangeset
for help on using the changeset viewer.