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 313)
+++ trunk/xpressme_integration_kit/wp-content/plugins/xpressme/include/custom_functions.php	(revision 317)
@@ -152,5 +152,6 @@
 	
 	$defaults = array(
-		'echo' => 1
+		'echo' => 1,
+		'no_link' => 0
 	);
 	$r = wp_parse_args( $args, $defaults );
@@ -160,14 +161,27 @@
 	$xpress_version = $xoops_config->module_version;
 	$xpress_codename = $xoops_config->module_codename;
-	$output = '<a href="http://ja.xpressme.info"'. " target='_blank'" . '>XPressME Ver.' . sprintf('%.2f %s',$xpress_version,$xpress_codename) .'</a>';
-	if ($xoops_config->is_wpmu) {
-		$output .= '(included <a href="http://mu.wordpress.org/" title="Powered by WordPress"'." target='_blank'". '>WordPress MU ' . $wpmu_version . '</a>)';
-	} else {
-		if (strstr($wp_version,'ME')){
-			$output .= '(included <a href="http://wpme.sourceforge.jp/" title="Powered by WordPress"'." target='_blank'". '>WordPress ' . $wp_version . '</a>)';
+	if ($no_link){
+		$output = 'XPressME Ver.' . sprintf('%.2f %s',$xpress_version,$xpress_codename);
+		if ($xoops_config->is_wpmu) {
+			$output .= '(included WordPress MU ' . $wpmu_version. ')';
 		} else {
-			$output .= '(included <a href="http://wordpress.org/" title="Powered by WordPress"'." target='_blank'". '>WordPress ' . $wp_version . '</a>)';
+			if (strstr($wp_version,'ME')){
+				$output .= '(included WordPress ' . $wp_version . ')';
+			} else {
+				$output .= '(included WordPress ' . $wp_version . ')';
+			}
 		}
-	}
+	} else {
+		$output = '<a href="http://ja.xpressme.info"'. " target='_blank'" . '>XPressME Ver.' . sprintf('%.2f %s',$xpress_version,$xpress_codename) .'</a>';
+		if ($xoops_config->is_wpmu) {
+			$output .= '(included <a href="http://mu.wordpress.org/" title="Powered by WordPress"'." target='_blank'". '>WordPress MU ' . $wpmu_version . '</a>)';
+		} else {
+			if (strstr($wp_version,'ME')){
+				$output .= '(included <a href="http://wpme.sourceforge.jp/" title="Powered by WordPress"'." target='_blank'". '>WordPress ' . $wp_version . '</a>)';
+			} else {
+				$output .= '(included <a href="http://wordpress.org/" title="Powered by WordPress"'." target='_blank'". '>WordPress ' . $wp_version . '</a>)';
+			}
+		}
+	}		
 	if ($echo)
 		echo $output;
