[pLog-svn] r3865 - plugins/trunk/gravatar

oscar at devel.lifetype.net oscar at devel.lifetype.net
Sat Aug 12 15:36:10 GMT 2006


Author: oscar
Date: 2006-08-12 15:36:09 +0000 (Sat, 12 Aug 2006)
New Revision: 3865

Modified:
   plugins/trunk/gravatar/plugingravatar.class.php
Log:
if for whatever reason there is no size specified, use 40 as the default


Modified: plugins/trunk/gravatar/plugingravatar.class.php
===================================================================
--- plugins/trunk/gravatar/plugingravatar.class.php	2006-08-12 14:27:19 UTC (rev 3864)
+++ plugins/trunk/gravatar/plugingravatar.class.php	2006-08-12 15:36:09 UTC (rev 3865)
@@ -46,7 +46,7 @@
 		    $this->pluginEnabled = $blogSettings->getValue( "plugin_gravatar_enabled" );
 		    $this->rating = $blogSettings->getValue( "plugin_gravatar_rating" );
 	        $this->default = $blogSettings->getValue( "plugin_gravatar_default" );
-	        $this->size = $blogSettings->getValue( "plugin_gravatar_size" );	
+	        $this->size = $blogSettings->getValue( "plugin_gravatar_size", 40 );	
 	    }
 	    
 	    function isEnabled()



More information about the pLog-svn mailing list