Skip to content

Commit 6458acd

Browse files
Updated to latest DNN Build.
By default it will show 9 records instead of 10
1 parent 653f949 commit 6458acd

10 files changed

+21
-21
lines changed
Binary file not shown.
Binary file not shown.

src/Dnn.ContactList.Api/Dnn.ContactList.Api.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@
3030
<WarningLevel>4</WarningLevel>
3131
</PropertyGroup>
3232
<ItemGroup>
33-
<Reference Include="DotNetNuke, Version=8.0.0.736, Culture=neutral, processorArchitecture=MSIL">
34-
<HintPath>..\..\packages\DotNetNuke.Core.8.0.0.736\lib\net40\DotNetNuke.dll</HintPath>
33+
<Reference Include="DotNetNuke, Version=8.0.0.745, Culture=neutral, processorArchitecture=MSIL">
34+
<HintPath>..\..\packages\DotNetNuke.Core.8.0.0.745\lib\net40\DotNetNuke.dll</HintPath>
3535
<Private>True</Private>
3636
</Reference>
3737
<Reference Include="Microsoft.ApplicationBlocks.Data, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
38-
<HintPath>..\..\packages\DotNetNuke.Core.8.0.0.736\lib\net40\Microsoft.ApplicationBlocks.Data.dll</HintPath>
38+
<HintPath>..\..\packages\DotNetNuke.Core.8.0.0.745\lib\net40\Microsoft.ApplicationBlocks.Data.dll</HintPath>
3939
<Private>True</Private>
4040
</Reference>
4141
<Reference Include="System" />
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="DotNetNuke.Core" version="8.0.0.736" targetFramework="net45" />
3+
<package id="DotNetNuke.Core" version="8.0.0.745" targetFramework="net45" />
44
</packages>

src/Dnn.ContactList.Mvc/Controllers/SettingsController.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public class SettingsController : DnnController
2929
public ActionResult Index()
3030
{
3131
var settings = new Settings();
32-
settings.PageSize = ModuleContext.Configuration.ModuleSettings.GetValueOrDefault("PageSize", 10);
32+
settings.PageSize = ModuleContext.Configuration.ModuleSettings.GetValueOrDefault("PageSize", 9);
3333
settings.AllowContactCreation = ModuleContext.Configuration.ModuleSettings.GetValueOrDefault("AllowContactCreation", false);
3434
return View(settings);
3535
}

src/Dnn.ContactList.Mvc/Dnn.ContactList.Mvc.csproj

+5-5
Original file line numberDiff line numberDiff line change
@@ -41,16 +41,16 @@
4141
<DocumentationFile>bin\Dnn.ContactList.Mvc.XML</DocumentationFile>
4242
</PropertyGroup>
4343
<ItemGroup>
44-
<Reference Include="DotNetNuke, Version=8.0.0.736, Culture=neutral, processorArchitecture=MSIL">
45-
<HintPath>..\..\packages\DotNetNuke.Core.8.0.0.736\lib\net40\DotNetNuke.dll</HintPath>
44+
<Reference Include="DotNetNuke, Version=8.0.0.745, Culture=neutral, processorArchitecture=MSIL">
45+
<HintPath>..\..\packages\DotNetNuke.Core.8.0.0.745\lib\net40\DotNetNuke.dll</HintPath>
4646
<Private>True</Private>
4747
</Reference>
48-
<Reference Include="DotNetNuke.Web.Mvc, Version=8.0.0.736, Culture=neutral, processorArchitecture=MSIL">
49-
<HintPath>..\..\packages\DotNetNuke.Web.Mvc.8.0.0.736\lib\net45\DotNetNuke.Web.Mvc.dll</HintPath>
48+
<Reference Include="DotNetNuke.Web.Mvc, Version=8.0.0.745, Culture=neutral, processorArchitecture=MSIL">
49+
<HintPath>..\..\packages\DotNetNuke.Web.Mvc.8.0.0.745\lib\net45\DotNetNuke.Web.Mvc.dll</HintPath>
5050
<Private>True</Private>
5151
</Reference>
5252
<Reference Include="Microsoft.ApplicationBlocks.Data, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
53-
<HintPath>..\..\packages\DotNetNuke.Core.8.0.0.736\lib\net40\Microsoft.ApplicationBlocks.Data.dll</HintPath>
53+
<HintPath>..\..\packages\DotNetNuke.Core.8.0.0.745\lib\net40\Microsoft.ApplicationBlocks.Data.dll</HintPath>
5454
<Private>True</Private>
5555
</Reference>
5656
<Reference Include="Microsoft.CSharp" />

src/Dnn.ContactList.Mvc/packages.config

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="DotNetNuke.Core" version="8.0.0.736" targetFramework="net45" />
4-
<package id="DotNetNuke.Web.Mvc" version="8.0.0.736" targetFramework="net45" />
3+
<package id="DotNetNuke.Core" version="8.0.0.745" targetFramework="net45" />
4+
<package id="DotNetNuke.Web.Mvc" version="8.0.0.745" targetFramework="net45" />
55
<package id="Microsoft.AspNet.Mvc" version="5.1.1" targetFramework="net45" />
66
<package id="Microsoft.AspNet.Razor" version="3.1.2" targetFramework="net45" />
77
<package id="Microsoft.AspNet.WebPages" version="3.1.1" targetFramework="net45" />

src/Dnn.ContactList.Spa/Dnn.ContactList.Spa.csproj

+6-6
Original file line numberDiff line numberDiff line change
@@ -41,20 +41,20 @@
4141
<DocumentationFile>bin\Dnn.ContactList.Spa.XML</DocumentationFile>
4242
</PropertyGroup>
4343
<ItemGroup>
44-
<Reference Include="DotNetNuke, Version=8.0.0.736, Culture=neutral, processorArchitecture=MSIL">
45-
<HintPath>..\..\packages\DotNetNuke.Core.8.0.0.736\lib\net40\DotNetNuke.dll</HintPath>
44+
<Reference Include="DotNetNuke, Version=8.0.0.745, Culture=neutral, processorArchitecture=MSIL">
45+
<HintPath>..\..\packages\DotNetNuke.Core.8.0.0.745\lib\net40\DotNetNuke.dll</HintPath>
4646
<Private>True</Private>
4747
</Reference>
48-
<Reference Include="DotNetNuke.Web, Version=8.0.0.736, Culture=neutral, processorArchitecture=MSIL">
49-
<HintPath>..\..\packages\DotNetNuke.Web.8.0.0.736\lib\net40\DotNetNuke.Web.dll</HintPath>
48+
<Reference Include="DotNetNuke.Web, Version=8.0.0.745, Culture=neutral, processorArchitecture=MSIL">
49+
<HintPath>..\..\packages\DotNetNuke.Web.8.0.0.745\lib\net40\DotNetNuke.Web.dll</HintPath>
5050
<Private>True</Private>
5151
</Reference>
5252
<Reference Include="DotNetNuke.WebUtility, Version=4.2.1.783, Culture=neutral, processorArchitecture=MSIL">
53-
<HintPath>..\..\packages\DotNetNuke.Web.8.0.0.736\lib\net40\DotNetNuke.WebUtility.dll</HintPath>
53+
<HintPath>..\..\packages\DotNetNuke.Web.8.0.0.745\lib\net40\DotNetNuke.WebUtility.dll</HintPath>
5454
<Private>True</Private>
5555
</Reference>
5656
<Reference Include="Microsoft.ApplicationBlocks.Data, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
57-
<HintPath>..\..\packages\DotNetNuke.Core.8.0.0.736\lib\net40\Microsoft.ApplicationBlocks.Data.dll</HintPath>
57+
<HintPath>..\..\packages\DotNetNuke.Core.8.0.0.745\lib\net40\Microsoft.ApplicationBlocks.Data.dll</HintPath>
5858
<Private>True</Private>
5959
</Reference>
6060
<Reference Include="Microsoft.CSharp" />

src/Dnn.ContactList.Spa/Settings.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</div>
1313
<script language="javascript" type="text/javascript">
1414
jQuery(document).ready(function ($) {
15-
var moduleId = [ModuleContext:ModuleId];
15+
var moduleId = parseInt("[ModuleContext:ModuleId]");
1616

1717
// identifier needed to initialize the quicksettings.
1818
var element = 'QuickSettings-'+moduleId;

src/Dnn.ContactList.Spa/packages.config

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="DotNetNuke.Core" version="8.0.0.736" targetFramework="net45" />
4-
<package id="DotNetNuke.Web" version="8.0.0.736" targetFramework="net45" />
3+
<package id="DotNetNuke.Core" version="8.0.0.745" targetFramework="net45" />
4+
<package id="DotNetNuke.Web" version="8.0.0.745" targetFramework="net45" />
55
<package id="Microsoft.AspNet.WebApi" version="5.2.3" targetFramework="net45" />
66
<package id="Microsoft.AspNet.WebApi.Client" version="5.2.3" targetFramework="net45" />
77
<package id="Microsoft.AspNet.WebApi.Core" version="5.2.3" targetFramework="net45" />

0 commit comments

Comments
 (0)