Plugin Directory

Changeset 225949


Ignore:
Timestamp:
04/07/2010 02:28:45 AM (16 years ago)
Author:
anraiki
Message:

-Chapter Order Fix
-Theme Detection for Kommiku fixed? maybe...

Location:
kommiku/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • kommiku/trunk/admin/database.php

    r224284 r225949  
    266266        global $wpdb;
    267267        $table = $wpdb->prefix."comic_series";
    268             $select = "SELECT * FROM ".$table;
     268            $select = "SELECT * FROM `".$table."` ORDER BY `title` ASC";
    269269            $results = $wpdb->get_results( $select );
    270270            return $results;
  • kommiku/trunk/kommiku.php

    r224286 r225949  
    22/*
    33Plugin Name: Kommiku Viewer
    4 Version: 2.0.9
     4Version: 2.0.10
    55Plugin URI: http://dotspiral.com/kommiku/
    66Description: Kommiku is a Online Manga Viewer.
     
    3535define('KOMMIKU_SKIN', get_option( 'kommiku_skin_directory' ));
    3636define('HTTP_HOST', 'http://'.$_SERVER['HTTP_HOST'].'/' );
     37
     38if(KOMMIKU_SKIN == "kommiku")
     39    define('KOMMIKU_SKIN', 'default' );
    3740
    3841add_action('admin_menu', 'kommiku_menu');
Note: See TracChangeset for help on using the changeset viewer.