Automatically load the theme which fixes issue of it not working correctly when not logged in as reported by @phl0
		
			
				
	
	
		
			24 行
		
	
	
		
			无行尾
		
	
	
		
			538 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			24 行
		
	
	
		
			无行尾
		
	
	
		
			538 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
defined('BASEPATH') OR exit('No direct script access allowed');
 | 
						|
 | 
						|
/*
 | 
						|
    Creates column public_slug in table station_logbooks
 | 
						|
*/
 | 
						|
 | 
						|
class Migration_options_autoload_theme extends CI_Migration {
 | 
						|
 | 
						|
    public function up()
 | 
						|
    {
 | 
						|
        $this->db->set('autoload', 'yes');
 | 
						|
        $this->db->where('option_name', "theme");
 | 
						|
        $this->db->update('options');
 | 
						|
    }
 | 
						|
 | 
						|
    public function down()
 | 
						|
    {
 | 
						|
        $this->db->set('autoload', 'no');
 | 
						|
        $this->db->where('option_name', "theme");
 | 
						|
        $this->db->update('options');
 | 
						|
    }
 | 
						|
} |