Skip to content

Commit

Permalink
Fix PHP 7.3 deprecation warning in lan_ren_help.php
Browse files Browse the repository at this point in the history
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()
  • Loading branch information
Deltik committed Jan 18, 2020
1 parent 524229b commit 4454b01
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions e107_languages/English/lan_ren_help.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@
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]");
Expand Down

0 comments on commit 4454b01

Please sign in to comment.