Merge pull request #1837 from shivpkumar/master

sub space for underscore in 'name' when registering public folder in plu...
This commit is contained in:
Régis Hanol 2014-01-18 05:28:04 -08:00
commit e5198c4fd4

View file

@ -177,7 +177,7 @@ class Plugin::Instance
if Dir.exists?(public_data)
target = Rails.root.to_s + "/public/plugins/"
`mkdir -p #{target}`
target << name
target << name.gsub(/\s/,"_")
# TODO a cleaner way of registering and unregistering
`rm -f #{target}`
`ln -s #{public_data} #{target}`