Browse Source

[SCEditor - BBCode]I forgot to use var with a couple of js variables in the editor

Signed-off-by: emanuele <emanuele45@gmail.com>
emanuele 12 years ago
parent
commit
5a3e162247
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Themes/default/scripts/jquery.sceditor.bbcode.js

+ 2 - 2
Themes/default/scripts/jquery.sceditor.bbcode.js

@@ -167,7 +167,7 @@
 						email	= prompt(this._("Enter the e-mail address:"), (display ? '' : selected));
 					if (email)
 					{
-						text	= prompt(this._("Enter the displayed text:"), display || email) || email;
+						var text	= prompt(this._("Enter the displayed text:"), display || email) || email;
 						this.insertText("[email=" + email + "]" + text + "[/email]");
 					}
 				} },
@@ -176,7 +176,7 @@
 						url	= prompt(this._("Enter URL:"), (display ? 'http://' : selected));
 					if (url)
 					{
-						text	= prompt(this._("Enter the displayed text:"), display || url) || url;
+						var text	= prompt(this._("Enter the displayed text:"), display || url) || url;
 						this.insertText("[url=" + url + "]" + text + "[/url]");
 					}
 				} },