Fixed bad variable parameters in template
authorChuck Scott <cscott@gaslightmedia.com>
Wed, 21 Oct 2015 21:15:40 +0000 (17:15 -0400)
committerChuck Scott <cscott@gaslightmedia.com>
Wed, 21 Oct 2015 21:15:40 +0000 (17:15 -0400)
glm-member-db.php
views/front/members/list.html

index 7727f99..6227dd9 100644 (file)
@@ -3,7 +3,7 @@
  * Plugin Name: GLM Members Database
  * Plugin URI: http://www.gaslightmedia.com/
  * Description: Gaslight Media Members Database.
- * Version: 1.0.32
+ * Version: 1.0.33
  * Author: Chuck Scott
  * Author URI: http://www.gaslightmedia.com/
  * License: GPL2
@@ -19,7 +19,7 @@
  * @package glmMembersDatabase
  * @author Chuck Scott <cscott@gaslightmedia.com>
  * @license http://www.gaslightmedia.com Gaslightmedia
- * @version 1.0.32
+ * @version 1.0.33
  */
 
 /*
@@ -33,7 +33,7 @@
  *  version when there's a change in the database!! Use the
  *  version nunmber of that release for the DB version.
  */
-define('GLM_MEMBERS_PLUGIN_VERSION', '1.0.32');
+define('GLM_MEMBERS_PLUGIN_VERSION', '1.0.33');
 define('GLM_MEMBERS_PLUGIN_DB_VERSION', '1.0.30');
 
 /*
index 0a906c9..196c120 100644 (file)
@@ -26,8 +26,8 @@
                             <select name="categorySearch" id="categorySelect">
                                 <option value="">(all)</option>
                     {foreach from=$categories item=v}
-                                <option value="{$v.id}" data-parent="{$v.parent.name}"{if $v.default} selected="selected"{/if}>
-                                    {if $v.parent.value}&nbsp;&nbsp;&nbsp;&nbsp;{/if}{$v.name}
+                                <option value="{$v.id}"{if $v.default} selected="selected"{/if}>
+                                    {if $v.parent}&nbsp;&nbsp;&nbsp;&nbsp;{/if}{$v.name}
                                 </option>
                     {/foreach}
                             </select>