Kooboo Forum
Welcome Guest Search | Active Topics | Log In | Register

PagePlugin Options
Lonely
#1 Posted : Wednesday, February 10, 2010 9:05:47 PM
Rank: Newbie

Groups: Registered

Joined: 2/3/2010
Posts: 1
Location: Kharkov
Empty list plugin on the page.

File StandardPluginResolver.cs
lines 86, 87

I think it's wrong.

public Dictionary<Type, string> GetPlugins()
{
string cacheKey = "plugins-" + Path;
if (CacheManager.Get(cacheKey) == null)
{
....
}
return new Dictionary<Type, string>();
//return (Dictionary<Type, string>)CacheManager.Get(cacheKey);
}

This seems to be fixed like this:

public Dictionary<Type, string> GetPlugins()
{
string cacheKey = "plugins-" + Path;
if (CacheManager.Get(cacheKey) == null)
{
....
}
//return new Dictionary<Type, string>();
return (Dictionary<Type, string>)CacheManager.Get(cacheKey);
}

:-)
jifeng
#2 Posted : Thursday, February 11, 2010 9:29:30 AM
Rank: Administration

Groups: Administrators, Registered

Joined: 9/3/2009
Posts: 571
Location: Xiamen China
Thanks, it is a bug. We have fixed in 2.0.1.0, please download from codeplex.
Regards,

Jifeng Huang

Kooboo Team
Users browsing this topic
Guest
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.