Merge pull request #6996 from BinkaDroid/patch-1

fixing error "json not defined" in frio
This commit is contained in:
Hypolite Petovan 2019-04-12 08:32:29 -04:00 committed by GitHub
commit 2133decf4c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -232,7 +232,7 @@
if (!isExtern) {
return;
}
var bbcode = '\n[video]' + json.url + '[/video]\n';
var bbcode = '\n[video]' + data.url + '[/video]\n';
addeditortext(bbcode);
};