Initial revision
[lhc/web/wiklou.git] / includes / ViewCountUpdate.php
1 <?
2 # See deferred.doc
3
4 class ViewCountUpdate {
5
6 var $mPageID;
7
8 function ViewCountUpdate( $pageid )
9 {
10 $this->mPageID = $pageid;
11 }
12
13 function doUpdate()
14 {
15 $sql = "UPDATE LOW_PRIORITY cur SET cur_counter=(1+cur_counter)," .
16 "cur_timestamp=cur_timestamp WHERE cur_id={$this->mPageID}";
17 $res = wfQuery( $sql, "ViewCountUpdate::doUpdate" );
18 }
19 }
20
21 ?>