- Bugfix: HowTo example will be displayed correctly if a user defined short code is set
git-svn-id: https://plugins.svn.wordpress.org/footnotes/trunk@920423 b8457f37-d9ea-0310-8a92-e5e31aec5664
This commit is contained in:
parent
024bf68b80
commit
0a1b28bbc5
2 changed files with 8 additions and 0 deletions
|
@ -581,6 +581,11 @@ class Class_FootnotesSettings
|
||||||
{
|
{
|
||||||
$l_arr_Footnote_StartingTag = $this->LoadSetting(FOOTNOTE_INPUTFIELD_PLACEHOLDER_START);
|
$l_arr_Footnote_StartingTag = $this->LoadSetting(FOOTNOTE_INPUTFIELD_PLACEHOLDER_START);
|
||||||
$l_arr_Footnote_EndingTag = $this->LoadSetting(FOOTNOTE_INPUTFIELD_PLACEHOLDER_END);
|
$l_arr_Footnote_EndingTag = $this->LoadSetting(FOOTNOTE_INPUTFIELD_PLACEHOLDER_END);
|
||||||
|
|
||||||
|
if ($l_arr_Footnote_StartingTag["value"] == "userdefined" || $l_arr_Footnote_EndingTag["value"] == "userdefined") {
|
||||||
|
$l_arr_Footnote_StartingTag = $this->LoadSetting(FOOTNOTE_INPUTFIELD_PLACEHOLDER_START_USERDEFINED);
|
||||||
|
$l_arr_Footnote_EndingTag = $this->LoadSetting(FOOTNOTE_INPUTFIELD_PLACEHOLDER_END_USERDEFINED);
|
||||||
|
}
|
||||||
?>
|
?>
|
||||||
<div style="text-align:center;">
|
<div style="text-align:center;">
|
||||||
<div class="footnote_placeholder_box_container">
|
<div class="footnote_placeholder_box_container">
|
||||||
|
|
|
@ -40,6 +40,9 @@ No, this Plugin has been written from scratch. Of course some inspirations on ho
|
||||||
|
|
||||||
== Changelog ==
|
== Changelog ==
|
||||||
|
|
||||||
|
= 1.2.1 =
|
||||||
|
- Bugfix: HowTo example will be displayed correctly if a user defined short code is set
|
||||||
|
|
||||||
= 1.2.0 =
|
= 1.2.0 =
|
||||||
- Feature: New button in the WYSIWYG editor and in the plain text editor to easily implement the footnotes tag
|
- Feature: New button in the WYSIWYG editor and in the plain text editor to easily implement the footnotes tag
|
||||||
- Feature: Icon for the WYSIWYG-editor button
|
- Feature: Icon for the WYSIWYG-editor button
|
||||||
|
|
Reference in a new issue