Changeset 225949
- Timestamp:
- 04/07/2010 02:28:45 AM (16 years ago)
- Location:
- kommiku/trunk
- Files:
-
- 2 edited
-
admin/database.php (modified) (1 diff)
-
kommiku.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kommiku/trunk/admin/database.php
r224284 r225949 266 266 global $wpdb; 267 267 $table = $wpdb->prefix."comic_series"; 268 $select = "SELECT * FROM ".$table;268 $select = "SELECT * FROM `".$table."` ORDER BY `title` ASC"; 269 269 $results = $wpdb->get_results( $select ); 270 270 return $results; -
kommiku/trunk/kommiku.php
r224286 r225949 2 2 /* 3 3 Plugin Name: Kommiku Viewer 4 Version: 2.0. 94 Version: 2.0.10 5 5 Plugin URI: http://dotspiral.com/kommiku/ 6 6 Description: Kommiku is a Online Manga Viewer. … … 35 35 define('KOMMIKU_SKIN', get_option( 'kommiku_skin_directory' )); 36 36 define('HTTP_HOST', 'http://'.$_SERVER['HTTP_HOST'].'/' ); 37 38 if(KOMMIKU_SKIN == "kommiku") 39 define('KOMMIKU_SKIN', 'default' ); 37 40 38 41 add_action('admin_menu', 'kommiku_menu');
Note: See TracChangeset
for help on using the changeset viewer.