File tree 3 files changed +3
-3
lines changed 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ module CodeRay
10
10
module Encoders
11
11
12
12
extend PluginHost
13
- plugin_path File . dirname ( __FILE__ ) , 'encoders'
13
+ plugin_path File . dirname ( __FILE__ ) . untaint , 'encoders'
14
14
15
15
# = Encoder
16
16
#
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ module CodeRay
18
18
# See PluginHost.
19
19
module Scanners
20
20
extend PluginHost
21
- plugin_path File . dirname ( __FILE__ ) , 'scanners'
21
+ plugin_path File . dirname ( __FILE__ ) . untaint , 'scanners'
22
22
23
23
24
24
# = Scanner
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ module CodeRay
5
5
# See Plugin.
6
6
module Styles
7
7
extend PluginHost
8
- plugin_path File . dirname ( __FILE__ ) , 'styles'
8
+ plugin_path File . dirname ( __FILE__ ) . untaint , 'styles'
9
9
10
10
# Base class for styles.
11
11
#
You can’t perform that action at this time.
0 commit comments