Index: trunk/external/for_wordpress_mu/wp-content/themes/xpress_mu_home/header.php
===================================================================
--- trunk/external/for_wordpress_mu/wp-content/themes/xpress_mu_home/header.php	(revision 236)
+++ trunk/external/for_wordpress_mu/wp-content/themes/xpress_mu_home/header.php	(revision 237)
@@ -42,5 +42,5 @@
 	<div class="xpress-operation-link">
 		<a href="<?php echo get_option('home'); ?>/"><?php _e('Mein Page','xpress')?></a> 
-		<?php if(is_xpress_contributor()) { echo ' | ' ; xpress_post_new_link(__('Post New','xpress')); }?>
+		<?php if(xpress_is_contributor()) { echo ' | ' ; xpress_post_new_link(__('Post New','xpress')); }?>
 	</div>
 </div>
Index: trunk/xpressme_integration_kit/wp-content/plugins/xpressme/include/custom_functions.php
===================================================================
--- trunk/xpressme_integration_kit/wp-content/plugins/xpressme/include/custom_functions.php	(revision 236)
+++ trunk/xpressme_integration_kit/wp-content/plugins/xpressme/include/custom_functions.php	(revision 237)
@@ -442,5 +442,5 @@
 }
 
-function is_xpress_contributor()
+function xpress_is_contributor()
 {
 	global $current_user;
@@ -586,5 +586,5 @@
 }
 
-function get_xpress_calendar($sun_color = '#DB0000' ,$sat_color = '#004D99' ,$initial = true) {
+function xpress_get_calendar($sun_color = '#DB0000' ,$sat_color = '#004D99' ,$initial = true) {
 	global $wpdb, $m, $monthnum, $year, $wp_locale, $posts;
 
Index: trunk/xpressme_integration_kit/wp-content/themes/xpress_default/blocks/calender_block_theme.php
===================================================================
--- trunk/xpressme_integration_kit/wp-content/themes/xpress_default/blocks/calender_block_theme.php	(revision 236)
+++ trunk/xpressme_integration_kit/wp-content/themes/xpress_default/blocks/calender_block_theme.php	(revision 237)
@@ -9,5 +9,5 @@
 	$mydirpath = get_xpress_dir_path();
 
-	$block['calender'] = get_xpress_calendar($sun_color,$sat_color);
+	$block['calender'] = xpress_get_calendar($sun_color,$sat_color);
 	return $block ;	
 }
Index: trunk/xpressme_integration_kit/wp-content/themes/xpress_default/header.php
===================================================================
--- trunk/xpressme_integration_kit/wp-content/themes/xpress_default/header.php	(revision 236)
+++ trunk/xpressme_integration_kit/wp-content/themes/xpress_default/header.php	(revision 237)
@@ -45,5 +45,5 @@
 		<?php endif; ?>
 		<a href="<?php echo get_option('home'); ?>/"><?php _e('Blogs Home','xpress')?></a> 
-		<?php if(is_xpress_contributor()) { echo ' | ' ; xpress_post_new_link(__('Post New','xpress')); }?>
+		<?php if(xpress_is_contributor()) { echo ' | ' ; xpress_post_new_link(__('Post New','xpress')); }?>
 	</div>
 </div>
