Changeset 1263706
- Timestamp:
- 10/12/2015 01:21:22 AM (10 years ago)
- Location:
- rets-rabbit/trunk
- Files:
-
- 4 added
- 4 deleted
- 3 edited
-
readme.txt (modified) (1 diff)
-
retsrabbit.php (modified) (2 diffs)
-
rr_actions.php (modified) (2 diffs)
-
template/detail.example.php (added)
-
template/detail.php (deleted)
-
template/listings.example.php (added)
-
template/listings.php (deleted)
-
template/results.example.php (added)
-
template/results.php (deleted)
-
template/search-form.example.php (added)
-
template/search-form.php (deleted)
Legend:
- Unmodified
- Added
- Removed
-
rets-rabbit/trunk/readme.txt
r1263335 r1263706 4 4 Requires at least: 3.0.1 5 5 Tested up to: 4.3 6 Stable tag: 1.0. 46 Stable tag: 1.0.5 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
rets-rabbit/trunk/retsrabbit.php
r1263335 r1263706 4 4 Plugin URI: http://retsrabbit.com/wordpress 5 5 Description: Plugin to integrate the real estate cloud service, Rets Rabbit, with Wordpress. 6 Version: 1.0. 46 Version: 1.0.5 7 7 Author: Patrick Pohler 8 8 Author URI: http://www.anecka.com … … 18 18 } 19 19 20 /*21 function rr_checkfordetailpagetitle($title, $sep) {22 $detail_page_id = get_option('rr-detail-page');23 if(get_the_ID() == $detail_page_id) {24 if($mls_id = get_query_var('mls_id')) {25 return $title."| WOOT";26 }27 }28 29 return $title;30 }31 */32 33 20 add_filter('paginate_links', 'rr_fixpaginationampersand'); 34 21 -
rets-rabbit/trunk/rr_actions.php
r1238274 r1263706 2 2 add_action('admin_post_retsrabbit-search', 'retsrabbit_handle_search'); // If the user is logged in 3 3 add_action('admin_post_nopriv_retsrabbit-search', 'retsrabbit_handle_search'); // If the user in not logged in 4 add_action('updated_option', 'retsrabbit_clear_transients', 10, 3); 4 5 5 6 function retsrabbit_handle_search() { … … 49 50 } 50 51 } 52 53 function retsrabbit_clear_transients($option, $oldvalue, $_newvalue) { 54 delete_transient('rr-search-query'); 55 delete_transient('retsrabbit-access-code'); 56 delete_transient('rr-metadata'); 57 } 51 58 ?>
Note: See TracChangeset
for help on using the changeset viewer.