hide print-specific output from cologneblue and nostalgia, too
[lhc/web/wiklou.git] / includes / SpecialUnusedimages.php
index 284394c..fb94bcc 100644 (file)
@@ -1,4 +1,4 @@
-<?
+<?php
 
 function wfSpecialUnusedimages()
 {
@@ -11,7 +11,7 @@ function wfSpecialUnusedimages()
        $sql = "SELECT img_name,img_user,img_user_text,img_timestamp,img_description " .
          "FROM image LEFT JOIN imagelinks ON img_name=il_to WHERE il_to IS NULL " .
          "ORDER BY img_timestamp LIMIT {$offset}, {$limit}";
-       $res = wfQuery( $sql, $fname );
+       $res = wfQuery( $sql, DB_READ, $fname );
 
        $sk = $wgUser->getSkin();