Changeset 794


Ignore:
Timestamp:
Feb 12, 2014, 12:08:26 AM (10 years ago)
Author:
maron
Message:
  • Fixed: set user tag in user Profile.php
  • Added: translate game object with 2 lines (herbals)
Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/Export/files/3.3.5a/CzWoW/CzWoW.lua

    r784 r794  
    266266---------translate gameobject----------
    267267function GameObjectChange(this)
    268   if 1 == GameTooltip:NumLines() then
     268  if 1 == GameTooltip:NumLines() or 2 == GameTooltip:NumLines() then
    269269    if CZWOW_ObjectName_count > 0 then
    270270            if GameTooltipTextLeft1 then
  • trunk/Modules/Export/files/4.3.4/CzWoW/CzWoW.lua

    r784 r794  
    266266---------translate gameobject----------
    267267function GameObjectChange(this)
    268   if 1 == GameTooltip:NumLines() then
     268  if 1 == GameTooltip:NumLines() or 2 == GameTooltip:NumLines() then
    269269    if CZWOW_ObjectName_count > 0 then
    270270            if GameTooltipTextLeft1 then
  • trunk/Modules/Export/files/5.4.0/CzWoW/CzWoW.lua

    r784 r794  
    266266---------translate gameobject----------
    267267function GameObjectChange(this)
    268   if 1 == GameTooltip:NumLines() then
     268  if 1 == GameTooltip:NumLines() or 2 == GameTooltip:NumLines() then
    269269    if CZWOW_ObjectName_count > 0 then
    270270            if GameTooltipTextLeft1 then
  • trunk/Modules/User/Profile.php

    r787 r794  
    189189        if (array_key_exists('Tag'.$UserTag['ID'], $_POST)) {
    190190                    $Query = 'SELECT * FROM `UserTag` '.
    191           'WHERE `UserTagType` = '.$UserTag['ID'].' AND `User` = '.($this->System->User->Id * 1);
     191          'WHERE `UserTagType` = '.$UserTag['ID'].' AND `User` = '.($_GET['user']*1);
    192192                  $DbResult2 = $this->Database->query($Query);
    193193          if ($DbResult2->num_rows == 0) {
  • trunk/includes/Version.php

    r793 r794  
    66// and system will need database update.
    77
    8 $Revision = 793; // Subversion revision
     8$Revision = 794; // Subversion revision
    99$DatabaseRevision = 787; // Database structure revision
    10 $ReleaseTime = '2014-02-09';
     10$ReleaseTime = '2014-02-12';
Note: See TracChangeset for help on using the changeset viewer.