From 2ef196deb2c110d0c60d55f467f3116912841bea Mon Sep 17 00:00:00 2001 From: Tomasz Maczukin Date: Wed, 17 Feb 2016 13:03:39 +0100 Subject: [PATCH] Change interpolation to named placeholder in owned_or_shared scope --- app/models/ci/runner.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/ci/runner.rb b/app/models/ci/runner.rb index 1e914b4449..e725a6d468 100644 --- a/app/models/ci/runner.rb +++ b/app/models/ci/runner.rb @@ -41,7 +41,7 @@ module Ci scope :owned_or_shared, ->(project_id) do joins('LEFT JOIN ci_runner_projects ON ci_runner_projects.runner_id = ci_runners.id') - .where("ci_runner_projects.gl_project_id = #{project_id} OR ci_runners.is_shared = true") + .where("ci_runner_projects.gl_project_id = :project_id OR ci_runners.is_shared = true", project_id: project_id) end acts_as_taggable