Skip to content

Commit 91f686f

Browse files
committed
forgot to update the script
1 parent b91325e commit 91f686f

File tree

2 files changed

+20
-4
lines changed

2 files changed

+20
-4
lines changed

yaf_dnn/Installation/01.96.10.SqlDataProvider

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
IF EXISTS (SELECT * FROM dbo.sysobjects WHERE id = OBJECT_ID(N'{databaseOwner}{objectQualifier}YafDnn_LastUpdatedProfile') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
2+
DROP PROCEDURE {databaseOwner}{objectQualifier}YafDnn_LastUpdatedProfile
3+
GO
4+
5+
CREATE PROCEDURE {databaseOwner}{objectQualifier}YafDnn_LastUpdatedProfile
6+
@UserID int
7+
AS
8+
SELECT TOP 1
9+
LastUpdatedDate
10+
FROM {databaseOwner}{objectQualifier}UserProfile
11+
WHERE UserID=@UserID
12+
order by LastUpdatedDate DESC
13+
GO
14+
15+
16+
117
/**********************************************************************/
218
/* InstallProfile.SQL */
319
/* */

yaf_dnn/Installation/YAF.DotNetNuke.Module.dnn

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<dotnetnuke type="Package" version="5.0">
22
<packages>
3-
<package name="YetAnotherForumDotNet" type="Module" version="02.10.05500">
3+
<package name="YetAnotherForumDotNet" type="Module" version="02.10.05501">
44
<friendlyName>YAF.NET Forums</friendlyName>
55
<description>
66
&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;
77
&lt;em&gt;Please visit: &lt;a href=&quot;http://www.yetanotherforum.net&quot;&gt;http://www.yetanotherforum.net&lt;/a&gt; for more information.&lt;/em&gt;
88
</description>
99
<iconFile>yaf.png</iconFile>
1010
<owner>
11-
<name>Jaben Cargman</name>
11+
<name>Ingo Herbote</name>
1212
<organization>Yet Another Forum.NET</organization>
1313
<url>http://www.yetanotherforum.net/</url>
1414
<email>[email protected]</email>
@@ -370,7 +370,7 @@
370370
<basePath>DesktopModules/YetAnotherForumDotNet/</basePath>
371371
<script type="Install">
372372
<name>01.96.10.SqlDataProvider</name>
373-
<version>01.96.15118</version>
373+
<version>01.96.10</version>
374374
</script>
375375
<script type="UnInstall">
376376
<name>Uninstall.SqlDataProvider</name>
@@ -379,7 +379,7 @@
379379
</component>
380380
</components>
381381
</package>
382-
<package name="YAF.WhatsNew" type="Module" version="02.10.05500">
382+
<package name="YAF.WhatsNew" type="Module" version="02.10.05501">
383383
<friendlyName>YAF.NET Forums What's New</friendlyName>
384384
<description>
385385
&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.

0 commit comments

Comments
 (0)