<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -7,14 +7,16 @@
 * Example usage in PHP template:
 *
 * &lt;?php if (Plugins::is_loaded('Colophon')) { ?&gt;
-* 	&lt;h2&gt;Colophon&lt;/h2&gt;
-* 	&lt;p&gt;&lt;?php echo $colophon; ?&gt;&lt;/p&gt;
+* 	&lt;h2&gt;&lt;?php echo $colophon_title; ?&gt;&lt;/h2&gt;
+* 	&lt;?php echo $colophon; ?&gt;
 * &lt;?php } ?&gt;
 *
 */
 
 class Colophon extends Plugin
 {
+	const VERSION= '0.2';
+	
 	/**
 	* Required plugin information
 	* @return array The array of information
@@ -23,7 +25,7 @@ class Colophon extends Plugin
 	{
 		return array(
 			'name'		=&gt;	'Colophon Plugin',
-			'version'	=&gt;	'0.1',
+			'version'	=&gt;	self::VERSION,
 			'url'		=&gt;	'http://github.com/stan/habari-plugins/tree/master',
 			'author'	=&gt;	'stanislas mazurek',
 			'authorurl'	=&gt;	'http://stanbar.jp',
@@ -57,6 +59,7 @@ class Colophon extends Plugin
 			switch( $action ) {
 				case _t('Configure'):
 					$ui	=	new FormUI ( strtolower( get_class( $this ) ) );
+					$colophontitle	=	$ui-&gt;add('text','colophon_title',_t('Enter your Title:'));
 					$colophontext	=	$ui-&gt;add('textarea','colophon_text',_t('Enter your Text:'));
 					$ui-&gt;on_success( array( $this, 'updated_config'  ) );
 					$ui-&gt;out();
@@ -72,7 +75,8 @@ class Colophon extends Plugin
 	*/
 	function action_add_template_vars( $theme ) 
 	{
-		$theme-&gt;colophon = Options::get( 'colophon:colophon_text' );
+		$theme-&gt;colophon = Format::autop(Options::get( 'colophon:colophon_text' ));
+		$theme-&gt;colophon_title = Options::get( 'colophon:colophon_title' );		
 	}
 
 	/**</diff>
      <filename>colophon/colophon.plugin.php</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>917638fc2ecbd7e0643a7655674cc89dc6b21b4f</id>
    </parent>
  </parents>
  <author>
    <name>Stanislas Mazurek</name>
    <email>stanatnet@mac.com</email>
  </author>
  <url>http://github.com/stan/habari-plugins/commit/e18c3c9297eb8bb448e57dc5c3fa047b4a9598d3</url>
  <id>e18c3c9297eb8bb448e57dc5c3fa047b4a9598d3</id>
  <committed-date>2008-05-17T01:41:15-07:00</committed-date>
  <authored-date>2008-05-17T01:41:15-07:00</authored-date>
  <message>added title input and added autop to colophon text</message>
  <tree>04bbb18241b664096afc12af14afd95d3239e8ad</tree>
  <committer>
    <name>Stanislas Mazurek</name>
    <email>stanatnet@mac.com</email>
  </committer>
</commit>
