mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
BUGFIX: emoji's url were relatives (was breaking the wordpress plugin)
This commit is contained in:
parent
c82279b9bd
commit
b024bebbe2
@ -3,6 +3,7 @@ module UrlHelper
|
|||||||
def is_local(url)
|
def is_local(url)
|
||||||
Discourse.store.has_been_uploaded?(url) ||
|
Discourse.store.has_been_uploaded?(url) ||
|
||||||
url =~ /^\/assets\// ||
|
url =~ /^\/assets\// ||
|
||||||
|
url =~ /^\/plugins\// ||
|
||||||
url.start_with?(Discourse.asset_host || Discourse.base_url_no_prefix)
|
url.start_with?(Discourse.asset_host || Discourse.base_url_no_prefix)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -25,6 +25,13 @@ describe UrlHelper do
|
|||||||
helper.is_local("/assets/javascripts/all.js").should be_true
|
helper.is_local("/assets/javascripts/all.js").should be_true
|
||||||
end
|
end
|
||||||
|
|
||||||
|
it "is true for plugin assets" do
|
||||||
|
store = stub
|
||||||
|
store.expects(:has_been_uploaded?).returns(false)
|
||||||
|
Discourse.stubs(:store).returns(store)
|
||||||
|
helper.is_local("/plugins/all.js").should be_true
|
||||||
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
describe "#absolute" do
|
describe "#absolute" do
|
||||||
|
Loading…
Reference in New Issue
Block a user