Changeset 297
- Timestamp:
- 12/23/07 01:37:11 (15 years ago)
- Location:
- dev
- Files:
-
- 6 added
- 4 modified
Legend:
- Unmodified
- Added
- Removed
-
dev/common/about.php
r254 r297 7 7 $developer = array('exi (Lead Developer)', 8 8 'knifee (Developer)', 9 'Ralle030583 (Developer)', 9 10 'Andrew Gunn (Siteadmin)', 10 11 'Ganja (Fluff girl)'); … … 12 13 $contributor = array('JaredC01', 13 14 'liquidism', 14 'ralle030583',15 15 'Mitchman', 16 16 'Coni', -
dev/common/includes/class.item.php
r254 r297 60 60 $smarty->assign('img', $img); 61 61 $smarty->assign('icon', $icon); 62 $smarty->assign('name', $this->getName()); 62 63 return $smarty->fetch(get_tpl('icon')); 63 64 } … … 173 174 if ($row['itm_id']) return $row['itm_id']; 174 175 } 176 177 function get_group_id($name) 178 { 179 $qry = new DBQuery(); 180 $query = "select groupID 181 from kb3_invtypes 182 where typeName = '".slashfix($name)."'"; 183 $qry->execute($query); 184 185 $row = $qry->getRow(); 186 if ($row['groupID']) return $row['itm_id']; 187 } 175 188 } 176 189 ?> -
dev/common/includes/globals.php
r296 r297 1 1 <?php 2 2 // current subversion revision 3 preg_match('/\$Re'.'vision: (.*?) \$/', '$Revision: 29 6$', $match);3 preg_match('/\$Re'.'vision: (.*?) \$/', '$Revision: 297 $', $match); 4 4 define('SVN_REV', $match[1]); 5 5 -
dev/templates/icon.tpl
r277 r297 1 1 <span class="item-icon" style="position:relative; border: none; height:32px; width:32px; text-align:left;"> 2 2 <img border="0" style="position:absolute;" src="{$icon}"> 3 <img border="0" height="32" width="32" src="{$img} ">3 <img border="0" height="32" width="32" src="{$img} title="{$name}" alt="{$name}"> 4 4 </span>