Changeset 5037 for trunk/includes/common/template-tags.php
- Timestamp:
- 07/17/2013 07:35:03 PM (13 years ago)
- File:
-
- 1 edited
-
trunk/includes/common/template-tags.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/common/template-tags.php
r5018 r5037 25 25 */ 26 26 function bbp_forums_url( $path = '/' ) { 27 echo bbp_get_forums_url( $path);27 echo esc_url( bbp_get_forums_url( $path ) ); 28 28 } 29 29 /** … … 49 49 */ 50 50 function bbp_topics_url( $path = '/' ) { 51 echo bbp_get_topics_url( $path);51 echo esc_url( bbp_get_topics_url( $path ) ); 52 52 } 53 53 /** … … 1945 1945 */ 1946 1946 function bbp_view_url( $view = false ) { 1947 echo bbp_get_view_url( $view);1947 echo esc_url( bbp_get_view_url( $view ) ); 1948 1948 } 1949 1949 /**
Note: See TracChangeset
for help on using the changeset viewer.