Skip to content

Commit

Permalink
Fixed HTML preview template
Browse files Browse the repository at this point in the history
  • Loading branch information
lvcabral committed Jan 26, 2024
1 parent 546abb1 commit 1d98f7b
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Source/Docs/History.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ ADDED....: Shortcut for "Save as..." is Ctrl+Shift+S
CHANGED..: Increased number of recent files from 4 to 10
CHANGED..: Default WordPress connection to HTTPS (port 443)
FIXED....: The question mark on titles was not being displayed on preview
FIXED....: The preview HTML template was missing the <body> opening tag

*** Release v4.05.0209 *** 25-Jul-2021 *** Category Improvements and Bug Fixes
CHANGED..: Categories window is resizeable and now shows 3 columns of items
Expand Down
2 changes: 1 addition & 1 deletion Source/Form/Post.frm
Original file line number Diff line number Diff line change
Expand Up @@ -2041,7 +2041,7 @@ Dim strPreview As String, strTemp As String, strCSS As String
strCSS = gBlog.PreviewCSS
End If
'On post preview add head and body tags
strPreview = "<html><head><title>Bloggar Preview</title></head>" & vbCrLf & _
strPreview = "<html><head><title>Bloggar Preview</title></head><body>" & vbCrLf & _
strCSS & vbCrLf & gBlog.PreviewBody & vbCrLf & _
"<table " & gBlog.PreviewWidth & "><tr><td><div " & _
gBlog.PreviewAlign & " " & gBlog.PreviewStyle & ">" & vbCrLf & _
Expand Down
Binary file modified Source/Form/Post.frx
Binary file not shown.

0 comments on commit 1d98f7b

Please sign in to comment.