log permission fixes

- fixed bug introduced with commit 016f3c7d
- fixed log edit links for locked caches when using viewlogs.php
    (added `status` to SELECT statement)
This commit is contained in:
following
2012-08-26 18:19:58 +02:00
parent 12bf606cfc
commit 53b73481f5
2 changed files with 12 additions and 2 deletions

View File

@ -38,7 +38,7 @@
[<a href="editlog.php?logid={$logItem.id|urlencode}">{t}Edit{/t}</a>]
{/if}
{if $logItem.userid==$login.userid}
{if $cache.userid==$login.userid || $logItem.userid==$login.userid}
<a href="removelog.php?logid={$logItem.id|urlencode}"><img src="resource2/{$opt.template.style}/images/log/16x16-trash.png" border="0" align="middle" border="0" width="16" height="16" alt="" /></a>
[<a href="removelog.php?logid={$logItem.id|urlencode}">{t}Delete{/t}</a>]
{/if}

View File

@ -39,7 +39,17 @@
if ($cache_id != 0)
{
//get cache record
$rs = sql("SELECT `caches`.`cache_id`, `caches`.`wp_oc` AS `wpoc`, `caches`.`user_id` AS `userid`, `caches`.`name`, IFNULL(`stat_caches`.`found`, 0) AS `found`, IFNULL(`stat_caches`.`notfound`, 0) AS `notfound`, IFNULL(`stat_caches`.`note`, 0) AS `note`, `cache_status`.`allow_user_view` FROM `caches` INNER JOIN `cache_status` ON `caches`.`status`=`cache_status`.`id` LEFT JOIN `stat_caches` ON `caches`.`cache_id`=`stat_caches`.`cache_id` WHERE `caches`.`cache_id`='&1'", $cache_id);
$rs = sql("SELECT `caches`.`cache_id`, `caches`.`wp_oc` AS `wpoc`,
`caches`.`user_id` AS `userid`, `caches`.`name`,
`caches`.`status` AS `status`,
IFNULL(`stat_caches`.`found`, 0) AS `found`,
IFNULL(`stat_caches`.`notfound`, 0) AS `notfound`,
IFNULL(`stat_caches`.`note`, 0) AS `note`,
`cache_status`.`allow_user_view`
FROM `caches`
INNER JOIN `cache_status` ON `caches`.`status`=`cache_status`.`id`
LEFT JOIN `stat_caches` ON `caches`.`cache_id`=`stat_caches`.`cache_id`
WHERE `caches`.`cache_id`='&1'", $cache_id);
$rCache = sql_fetch_array($rs);
sql_free_result($rs);