1
0
mirror of https://git.teknik.io/Teknikode/Teknik.git synced 2023-08-02 14:16:22 +02:00

Fixed page title not showing 'create/edit' when creating or editing a post.

This commit is contained in:
Uncled1023 2017-02-20 18:08:29 -08:00
parent bb29e5be82
commit e345535389
2 changed files with 5 additions and 5 deletions

View File

@ -1,2 +1,2 @@
assembly-versioning-scheme: MajorMinorPatch
next-version: 2.0.5
next-version: 2.0.6

View File

@ -132,7 +132,7 @@ namespace Teknik.Areas.Blog.Controllers
model = new BlogViewModel(blog);
if (blog.User.Username == Constants.SERVERUSER)
{
ViewBag.Title = model.Title + " - " + Config.BlogConfig.Title + " - " + Config.Title;
ViewBag.Title = "Create Post - " + Config.BlogConfig.Title + " - " + Config.Title;
ViewBag.Description = Config.BlogConfig.Description;
}
else
@ -142,7 +142,7 @@ namespace Teknik.Areas.Blog.Controllers
{
ViewBag.Title = blog.User.BlogSettings.Title + " - " + ViewBag.Title;
}
ViewBag.Title = model.Title + " - " + ViewBag.Title;
ViewBag.Title = "Create Post - " + ViewBag.Title;
ViewBag.Description = blog.User.BlogSettings.Description;
}
return View("~/Areas/Blog/Views/Blog/NewPost.cshtml", model);
@ -168,7 +168,7 @@ namespace Teknik.Areas.Blog.Controllers
if (post.System)
{
ViewBag.Title = model.Title + " - " + Config.BlogConfig.Title + " - " + Config.Title;
ViewBag.Title = "Edit Post - " + model.Title + " - " + Config.BlogConfig.Title + " - " + Config.Title;
ViewBag.Description = Config.BlogConfig.Description;
}
else
@ -178,7 +178,7 @@ namespace Teknik.Areas.Blog.Controllers
{
ViewBag.Title = post.Blog.User.BlogSettings.Title + " - " + ViewBag.Title;
}
ViewBag.Title = model.Title + " - " + ViewBag.Title;
ViewBag.Title = "Edit Post - " + model.Title + " - " + ViewBag.Title;
ViewBag.Description = post.Blog.User.BlogSettings.Description;
}
return View("~/Areas/Blog/Views/Blog/EditPost.cshtml", model);