1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-17 04:38:27 +01:00

Fix PHP 7.3 deprecation warning in lan_ren_help.php

Apparently a bug introduced on 2004-09-21:
https://sourceforge.net/p/e107/svn/898/tree/trunk/e107_0.7/e107_languages/English/lan_ren_help.php

Just happens to be a misuse of the third parameter of define()
This commit is contained in:
Nick Liu 2020-01-18 18:43:34 +01:00
parent 524229ba0b
commit 4454b01588
No known key found for this signature in database
GPG Key ID: 1167C5F9C9897637

View File

@ -32,9 +32,9 @@ define("LANHELP_21", "Click to open color dialog ...");
define("LANHELP_22", "Click to open size dialog ...");
define("LANHELP_23", "Insert link:\n[link]http://mysite.com[/link] or [link=http://yoursite.com]Visit My Site[/link]");
define("LANHELP_24", "Bold text:\n[b]This text will be bold[/b]", "font-weight:bold; width: 20px");
define("LANHELP_25", "Italic text:\n[i]This text will be italicised[/i]", "font-style:italic; width: 20px");
define("LANHELP_26", "Underline text:\n[u]This text will be underlined[/u]", "text-decoration: underline; width: 20px");
define("LANHELP_24", "Bold text:\n[b]This text will be bold[/b]");
define("LANHELP_25", "Italic text:\n[i]This text will be italicised[/i]");
define("LANHELP_26", "Underline text:\n[u]This text will be underlined[/u]");
define("LANHELP_27", "Insert image:\n[img]mypicture.jpg[/img]");
define("LANHELP_28", "Center align:\n[center]This text will be centered[/center]");
define("LANHELP_29", "Left align:\n[left]This text will be left aligned[/left]");