From d216547382cf1f3419de31e1ee06272e816ea339 Mon Sep 17 00:00:00 2001 From: kibigo! Date: Sun, 3 Dec 2017 22:30:45 -0800 Subject: [PATCH] Fixed typos --- app/controllers/auth/registrations_controller.rb | 2 +- app/lib/themes.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/controllers/auth/registrations_controller.rb b/app/controllers/auth/registrations_controller.rb index cc7a69ab07e..42e852c0493 100644 --- a/app/controllers/auth/registrations_controller.rb +++ b/app/controllers/auth/registrations_controller.rb @@ -5,7 +5,7 @@ class Auth::RegistrationsController < Devise::RegistrationsController before_action :check_enabled_registrations, only: [:new, :create] before_action :configure_sign_up_params, only: [:create] - before_action :set_path + before_action :set_pack before_action :set_sessions, only: [:edit, :update] before_action :set_instance_presenter, only: [:new, :create, :update] diff --git a/app/lib/themes.rb b/app/lib/themes.rb index 0819e2c9087..f1796d0e367 100644 --- a/app/lib/themes.rb +++ b/app/lib/themes.rb @@ -32,7 +32,7 @@ class Themes Dir.glob(File.join(path, '*.{css,scss}')) do |sheet| pack.push(File.basename(sheet, File.extname(sheet))) end - elsif ext.match?(/^\.s?css$/i) + elsif ext.match(/^\.s?css$/i) skin = File.basename(path, ext) pack = ['common'] end