YAFLogo

juju
  • juju
  • 72.2% (Friendly)
  • YAF Lover
13 years ago
there seems to be an error in the YafNntp.cs

Error 66 'YAF.Classes.Data.LegacyDb' does not contain a definition for 'NntpForumList' F:\YafSvn\YAF.Core\Nntp\YafNntp.cs 130 44 YAF.Core



try
      {
        this._applicationStateBase["WorkingInYafNNTP"] = true;

        // Only those not updated in the last 30 minutes
        foreach (var nntpForum in LegacyDb.NntpForumList(boardID, lastUpdate, null, true))
        {

maybe somebody committed a code a forgot to create this? I looked at LegacyDb.cs and indded there isn't any property declared for it.


hmmmm.... click thanks if my posts are useful
Jaben
  • Jaben
  • 100% (Exalted)
  • YAF Developer
13 years ago

there seems to be an error in the YafNntp.cs

Error 66 'YAF.Classes.Data.LegacyDb' does not contain a definition for 'NntpForumList' F:\YafSvn\YAF.Core\Nntp\YafNntp.cs 130 44 YAF.Core



try
      {
        this._applicationStateBase["WorkingInYafNNTP"] = true;

        // Only those not updated in the last 30 minutes
        foreach (var nntpForum in LegacyDb.NntpForumList(boardID, lastUpdate, null, true))
        {

maybe somebody committed a code a forgot to create this? I looked at LegacyDb.cs and indded there isn't any property declared for it.

Originally Posted by: juju 

Fixed in the latest commit.

juju
  • juju
  • 72.2% (Friendly)
  • YAF Lover
13 years ago

I had to manually disable undo thank in the code but would be nice to have an option to "disable undo thank" in the admin interface.

Originally Posted by: tommy382 

Im trying to do the same (disable undo thank). Could you share your code revisions? Im looking at JavaScriptBlock.cs, YafAjax.cs, DisplayPost.ascx.cs and LegacyDb.cs but still feeling my way wherre to start.

Thank you


hmmmm.... click thanks if my posts are useful
juju
  • juju
  • 72.2% (Friendly)
  • YAF Lover
13 years ago
Got it. If anybody is interested:

Just a crude work around, I edited DisplayPost.ascx.cs line:


const string RemoveThankBoxHTML =
            "'<a class=\"yaflittlebutton\" href=\...

with:


const string RemoveThankBoxHTML =
            "'<a class=\"yafhiddenbutton\">|</a>'";

then i created a css class with display:none


hmmmm.... click thanks if my posts are useful
juju
  • juju
  • 72.2% (Friendly)
  • YAF Lover
13 years ago
Theres a small setback though, if i try to refesh the page, it will show the "remove thanks" button again. Any help would be appreciated.
hmmmm.... click thanks if my posts are useful