/[pliva-si]/inc/common.inc
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /inc/common.inc

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.8 by dpavlin, Thu Jul 5 07:53:27 2001 UTC revision 1.9 by dpavlin, Thu Sep 20 09:50:24 2001 UTC
# Line 12  if (!isset($m)) { Line 12  if (!isset($m)) {
12          $smarty->assign("m_form_session","<input type=\"hidden\" name=\"m\" value=\"$m\">");          $smarty->assign("m_form_session","<input type=\"hidden\" name=\"m\" value=\"$m\">");
13  }  }
14    
15  $sth = $dbh->prepare("select item,url,file,w,h from menu where section='$m' and visible order by num");  $sth = $dbh->prepare("select item,url,file,w,h from menu where section='$m' and $visible_is_true order by num");
16  $sth->execute();  $sth->execute();
17  while ($row=$sth->fetchrow_hash()) {  while ($row=$sth->fetchrow_hash()) {
18          $menu[]=$row;          $menu[]=$row;
# Line 22  $smarty->assign("menu",$menu); Line 22  $smarty->assign("menu",$menu);
22    
23  // fetch news  // fetch news
24    
25  $sth = $dbh->prepare("select id,title from news where substr(type,1,1)='n' and visible order by date desc limit 5");  $sth = $dbh->prepare("select id,title from news where substr(type,1,1)='n' and $visible_is_true order by date desc limit 5");
26  $sth->execute();  $sth->execute();
27  while ($row=$sth->fetchrow_hash()) {  while ($row=$sth->fetchrow_hash()) {
28          $news[]=$row;          $news[]=$row;
29  }  }
30  $smarty->assign("news",$news);  $smarty->assign("news",$news);
31    
32  $sth = $dbh->prepare("select id,title from news where substr(type,1,1)='e' and visible order by priority desc,date desc limit 5");  $sth = $dbh->prepare("select id,title from news where substr(type,1,1)='e' and $visible_is_true order by priority desc,date desc limit 5");
33  $sth->execute();  $sth->execute();
34  while ($row=$sth->fetchrow_hash()) {  while ($row=$sth->fetchrow_hash()) {
35          $events[]=$row;          $events[]=$row;

Legend:
Removed from v.1.8  
changed lines
  Added in v.1.9

  ViewVC Help
Powered by ViewVC 1.1.26