Changeset 520744
- Timestamp:
- 03/19/2012 06:12:32 AM (14 years ago)
- Location:
- etemplates/trunk
- Files:
-
- 3 edited
-
et-init.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
views/et-logs-list.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
etemplates/trunk/et-init.php
r520626 r520744 4 4 Plugin URI: http://wordpress.org/extend/plugins/etemplates 5 5 Description: Create simple, yet dynamic powerful email templates that are commonly used in application style websites. <strong>For developers / advanced users ONLY.</strong> 6 Version: 0.2 6 Version: 0.2.1 7 7 Author: Chris Carvache 8 8 Author URI: http://chriscarvache.com … … 26 26 27 27 global $wpdb; 28 define('NLWS_ET_VERSION', 02 );28 define('NLWS_ET_VERSION', 021); 29 29 define('NLWS_ET_URL', rtrim(plugin_dir_url(__FILE__))); 30 30 define('NLWS_ET_DIR', rtrim(plugin_dir_path(__FILE__))); -
etemplates/trunk/readme.txt
r520626 r520744 4 4 Requires at least: 3.2 5 5 Tested up to: 3.4 6 Stable tag: 0.2 6 Stable tag: 0.2.1 7 7 8 8 Create simple, yet powerful dynamic email templates that are commonly used in application style websites. <strong>For developers / advanced users ONLY.</strong> … … 73 73 == Changelog == 74 74 75 = 0.2.1 = 76 * Fixed sorting SQL bug 77 75 78 = 0.2 = 76 79 * Added Email Log feature -
etemplates/trunk/views/et-logs-list.php
r520626 r520744 38 38 switch ( $orderby ) { 39 39 case 'date' : 40 $SQL.= "ORDER BY date";40 $SQL.= "ORDER BY `date`"; 41 41 break; 42 42 case 'to' : 43 $SQL.= "ORDER BY to";43 $SQL.= "ORDER BY `to`"; 44 44 break; 45 45 case 'subject' : 46 $SQL.= "ORDER BY subject";46 $SQL.= "ORDER BY `subject`"; 47 47 break; 48 48 case 'id' : default : 49 $SQL.= "ORDER BY ID";49 $SQL.= "ORDER BY `ID`"; 50 50 break; 51 51 }
Note: See TracChangeset
for help on using the changeset viewer.