*/
public function entryPostProcessing($r, $a)
{
+
+ // Check that URLs have http:// in front of them.
+ if (isset($r['url']) && strlen(trim($r['url'])) > 0 && strtolower(substr($r['url'],0,4)) != 'http') {
+ $r['url'] = 'http://'.$r['url'];
+ }
+
return $r;
}
* Plugin Name: GLM Members Database Social
* Plugin URI: http://www.gaslightmedia.com/
* Description: Gaslight Media Members Database.
- * Version: 1.1.0
+ * Version: 1.1.1
* Author: Gaslight Media
* Author URI: http://www.gaslightmedia.com/
* License: GPL2
* @package glmMembersDatabaseSocialAddOn
* @author Gaslight Media <dev@gaslightmedia.com>
* @license http://www.gaslightmedia.com Gaslightmedia
- * @version 1.1.0
+ * @version 1.1.1
*/
/*
* so that we're sure the other add-ons see an up to date
* version from this plugin.
*/
-define('GLM_MEMBERS_SOCIAL_PLUGIN_VERSION', '1.1.0');
+define('GLM_MEMBERS_SOCIAL_PLUGIN_VERSION', '1.1.1');
define('GLM_MEMBERS_SOCIAL_PLUGIN_DB_VERSION', '0.0.3');
// This is the minimum version of the GLM Members DB plugin require for this plugin.