Permalink Problems

Sorry guys, this is becoming a habit, but I found a solution, as follows:

set rewrite to false in taxonomy registration:
register_taxonomy(‘property_type’,array(‘sbproperty’), array(
‘hierarchical’ => true,
‘labels’ => $labels,
‘show_ui’ => true,
‘query_var’ => true,
‘rewrite’ => false
));

And create my own rule

add_filter('rewrite_rules_array','wp_insertMyRewriteRules');
add_filter('init','flushRules');


function flushRules(){
global $wp_rewrite;
$wp_rewrite->flush_rules();
}


function wp_insertMyRewriteRules($rules)
{
$newrules = array();
$newrules["([a-z]+)-in-turkey-for-sale/?$"] 'index.php?property_type=$matches[1]-in-turkey-for-sale';
return $newrules + $rules;
}