new wfMsg* functions to use the wgContLang object for translating content related...
[lhc/web/wiklou.git] / includes / SpecialPopularpages.php
index e697433..39fc4c6 100644 (file)
@@ -1,7 +1,20 @@
 <?php
-
+/**
+ *
+ * @package MediaWiki
+ * @subpackage SpecialPage
+ */
+
+/**
+ *
+ */
 require_once( "QueryPage.php" );
 
+/**
+ *
+ * @package MediaWiki
+ * @subpackage SpecialPage
+ */
 class PopularPagesPage extends QueryPage {
 
        function getName() {
@@ -14,12 +27,15 @@ class PopularPagesPage extends QueryPage {
        }
 
        function getSQL() {
+               $dbr =& wfGetDB( DB_SLAVE );
+               $cur = $dbr->tableName( 'cur' );
+
                return
                        "SELECT 'Popularpages' as type,
                                cur_namespace as namespace,
                                cur_title as title,
                                cur_counter as value
-                       FROM cur
+                       FROM $cur
                        WHERE cur_namespace=0 AND cur_is_redirect=0";
        }
 
@@ -31,8 +47,10 @@ class PopularPagesPage extends QueryPage {
        }
 }
 
-function wfSpecialPopularpages()
-{
+/**
+ * Constructor
+ */
+function wfSpecialPopularpages() {
     list( $limit, $offset ) = wfCheckLimits();
     
     $ppp = new PopularPagesPage();