Index: creativecommons_lite.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/creativecommons_lite/creativecommons_lite.module,v
retrieving revision 1.2
diff -u -p -r1.2 creativecommons_lite.module
--- creativecommons_lite.module	12 May 2007 16:42:17 -0000	1.2
+++ creativecommons_lite.module	26 May 2008 19:17:24 -0000
@@ -146,25 +146,40 @@ function get_license_html($license) {
 
   $license_info = get_license_info($license);
 
+if ( $img = $license_info['images'] ) {
+
      $txt = 'More info about '.l(t("Creative Commons Licensing"), 'http://creativecommons.org', array('rel' => 'license', 'title' => $license_info['license_name'], 'target' => '_blank' ))."\n"; 
 
 	 $html = "\n<!--Creative Commons License-->\n";
 
 	 $html .= l(t("This work's Creative Commons license"), $license_info['license_uri'], array('rel' => 'license', 'title' => $license_info['license_name'], 'target' => '_blank' ))."<br>\n";
 
-   if ( $img = $license_info['images'] ) {  
+   
 
       foreach ($img as $img_tag)
 
         $html .= l($img_tag, $license_info['license_uri'], array('rel' => 'license', 'target' => '_blank' ), NULL, NULL, FALSE, TRUE) . "\n";
+         
+        $html .= '<br />';
 
-      $html .= '<br />';
+        $html .= $txt;
+        
+        $html .= "<!--/Creative Commons License-->\n";
 
+      
+  
     }	 
+    
+    else {
 
-	$html .= $txt;
+$html .=  "&#169; All Rights Reserved. This work is the copyright of the author.\n";
 
-	$html .= "<!--/Creative Commons License-->\n";
+
+        $html .= '<br />'; 
+        
+	}
+
+	
 
  return $html;
 
@@ -238,7 +253,7 @@ function creativecommons_lite_get_licens
   
   $types['publicdomain'] = 'Public Domain License';
 
-  $types['ccdevnations'] = 'Developing Nations License';
+  //$types['ccdevnations'] = 'Developing Nations License';
 
   $types['by-nc-nd'] =  'Attribution Non-commercial No Derivatives';
 
@@ -251,6 +266,8 @@ function creativecommons_lite_get_licens
   $types['by-sa'] =  'Attribution Share Alike ';
 
   $types['by'] = 'Attribution';
+  
+  $types['all'] = 'All Rights Reserved (Copyright)';
 
   return $types;
 
@@ -441,4 +458,4 @@ function get_license_info( $license ) {
   return $license_info; 
 }
 
-//eof 
\ No newline at end of file
+//eof 
