http://www.wowhead.com/images/icons/medium/INV_Fabric_MoonRag_01.jpg
Pugro wrote:Cheers for the location of that link robojerk!
I'm getting another small issue though, my icons for itemico tags are not working, as an example of a mooncloth tag the image source is:
- Code: Select all
http://www.wowhead.com/images/icons/medium/INV_Fabric_MoonRag_01.jpg
Any ideas?
fenuz wrote:wowhead uses different filenames for its icons than thottbot and allakhazam. Therefor it will be hard to mix the tooltips using the same icon store location.
if ($type == 'item')
{
// Initialize the html.
$item_html = '[' . $item_name . ']';
if ($type == 'item')
{
// Initialize the html.
$item_html = '[' . utf8_encode($item_name) . ']';
function getItemHtml($name, $update = false)
{
$html = $this->item_cache->getItemHtml($name);
function getItemHtml($name, $update = false)
{
$html = utf8_encode($this->item_cache->getItemHtml($name));
// Grab the item name.
$item_name = $match[3];
$icon_lsize = $match[2];
$item_type = $match[1];
// Grab the item name.
$item_name = utf8_decode($match[3]);
$icon_lsize = $match[2];
$item_type = $match[1];
Users browsing this forum: No registered users and 0 guests