Welcome Guest! To enable all features please Login or Register.

Notification

Icon
Error

PagePlugin
Lonely
#1 Posted : Wednesday, February 10, 2010 9:05:47 PM(UTC)
Rank: Newbie
Groups: Registered

Joined: 2/3/2010(UTC)
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(UTC)
Rank: Administration
Groups: Administrators, Registered

Joined: 9/3/2009(UTC)
Posts: 1,391
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

Microsoft ASP.NET MVP
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.

Powered by YAF 1.9.5.5 | YAF © 2003-2011, Yet Another Forum.NET
This page was generated in 0.045 seconds.