Skip to content

Commit

Permalink
bump to 3.2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
w8tcha committed Aug 10, 2024
1 parent 3196fe6 commit 6a8ea68
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
9 changes: 4 additions & 5 deletions yaf_dnn/Components/YAFTaskModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ namespace YAF.DotNetNuke.Components;
using Autofac;

using YAF.Core;
using YAF.Types;
using YAF.Types.Attributes;
using YAF.Types.EventProxies;
using YAF.Types.Interfaces;
Expand Down Expand Up @@ -57,10 +56,10 @@ public class YafTaskModule : IHttpModule, IHaveServiceLocator
/// <summary>
/// Bootstrapping fun
/// </summary>
/// <param name="httpApplication">
/// <param name="context">
/// The http application.
/// </param>
public void Init(HttpApplication httpApplication)
public void Init(HttpApplication context)
{
if (this.ModuleInitialized)
{
Expand All @@ -72,11 +71,11 @@ public void Init(HttpApplication httpApplication)
{
if (!this.ModuleInitialized)
{
this.AppInstance = httpApplication;
this.AppInstance = context;

// set the httpApplication as early as possible...
GlobalContainer.Container.Resolve<CurrentHttpApplicationStateBaseProvider>().Instance =
new HttpApplicationStateWrapper(httpApplication.Application);
new HttpApplicationStateWrapper(context.Application);

GlobalContainer.Container.Resolve<IInjectServices>().Inject(this);

Expand Down
10 changes: 5 additions & 5 deletions yaf_dnn/Installation/YAF.DotNetNuke.Module.dnn
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<dotnetnuke type="Package" version="5.0">
<packages>
<package name="YetAnotherForumDotNet" type="Module" version="03.26.006134">
<package name="YetAnotherForumDotNet" type="Module" version="03.27.006135">
<friendlyName>YAF.NET Forums</friendlyName>
<description>
&lt;strong&gt;YetAnotherForum.NET&lt;/strong&gt; as DNN Module. Yet Another Forum.NET (YAF) is an open source ASP.NET forum system.&lt;br /&gt;
Expand Down Expand Up @@ -78,7 +78,7 @@
03.22.006130,
03.23.006131,
03.24.006132,
03.25.006133,03.26.006134
03.25.006133,03.26.006134,03.27.006135
</upgradeVersionsList>
</attributes>
</eventMessage>
Expand Down Expand Up @@ -524,7 +524,7 @@
</component>
</components>
</package>
<package name="YAF.WhatsNew" type="Module" version="03.26.006134">
<package name="YAF.WhatsNew" type="Module" version="03.27.006135">
<friendlyName>YAF.NET Forums What's New</friendlyName>
<description>
&lt;p&gt;This Module displays the Latest Posts from a &lt;strong&gt;YetAnotherForum.NET&lt;/strong&gt; Module. Based on the Current Users Authorization Level. You can define Which Forum should been used, and how many Posts should displayed.
Expand Down Expand Up @@ -589,7 +589,7 @@
03.00.006100,03.13.006107,03.15.006109,03.15.006110,03.15.006111,03.16.006112,03.16.006118,03.17.006119,03.18.006120,
03.19.006121,03.19.006122,03.19.006123,03.19.006124,03.19.006125,03.19.006126,03.19.006127,
03.20.006128,03.21.006129,03.22.006130,03.23.006131,03.24.006132,
03.25.006133,03.26.006134
03.25.006133,03.26.006134,03.27.006135
</upgradeVersionsList>
</attributes>
</eventMessage>
Expand Down Expand Up @@ -629,7 +629,7 @@
</component>
</components>
</package>
<package name="bootstrap-bundle" type="JavaScript_Library" version="05.33.106134">
<package name="bootstrap-bundle" type="JavaScript_Library" version="05.33.106135">
<friendlyName>Bootstrap v5.3.3 JavaScript Bundle (width Popper.js)</friendlyName>
<description>
<![CDATA[<p>Bootstrap is a sleek, intuitive, and powerful front-end framework for faster and easier web development, created and maintained by <a href="http://twitter.com/mdo">Mark Otto</a> and <a href="http://twitter.com/fat">Jacob Thornton</a>.</p>
Expand Down

0 comments on commit 6a8ea68

Please sign in to comment.