mirror of
https://github.com/slawkens/myaac.git
synced 2025-10-14 01:34:55 +02:00
added Sizaro's Swedish translation and some fixes
https://otland.net/threads/myaac-v0-0-1.251454/page-6#post-2443743
This commit is contained in:
@@ -68,15 +68,18 @@ $type = '';
|
||||
$houseOwner = $house['owner'];
|
||||
if($houseOwner > 0)
|
||||
{
|
||||
$guild = NULL;
|
||||
echo '<br/><br/>The house has been rented by ';
|
||||
if($house['guild'] == 1)
|
||||
if(isset($house['guild']) && $house['guild'] == 1)
|
||||
{
|
||||
$guild = new OTS_Guild();
|
||||
$guild->load($houseOwner);
|
||||
echo getGuildLink($guild->getName());
|
||||
}
|
||||
else
|
||||
echo getCreatureName($houseOwner) . '.';
|
||||
echo getCreatureName($houseOwner);
|
||||
|
||||
echo '.';
|
||||
|
||||
if($rent != 'never' && $house['paid'] > 0)
|
||||
{
|
||||
|
Reference in New Issue
Block a user