/[corp_html]/new.php
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 /new.php

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

revision 1.5 by dpavlin, Fri Feb 23 15:23:32 2001 UTC revision 1.7 by dpavlin, Fri Feb 23 16:36:56 2001 UTC
# Line 25  if ($section == "investor") { Line 25  if ($section == "investor") {
25          $back_url="index.php";          $back_url="index.php";
26  }  }
27    
28  $smarty->assign( array ( lpic=>$lpic, lext=>$lext, mpic=>$mpic, Section_title=>$title ) );  $smarty->assign( array ( lpic=>$lpic, lext=>$lext, mpic=>$mpic, ) );
29    
30  $sql_where="where visible is true";  $sql_where="where visible is true";
31    
# Line 50  if (file_exists(find_html_file("news",$m Line 50  if (file_exists(find_html_file("news",$m
50          if (isset($type)) {          if (isset($type)) {
51                  if ($type == "n") {                  if ($type == "n") {
52                          $sql_where .= " and type='n'";                          $sql_where .= " and type='n'";
53                            $title.=" : News";
54                    } elseif ($type == "e") {
55                            $sql_where .= " and type='e'";
56                            $title.=" : Events";
57                  }                  }
58          }          }
59    
# Line 63  if (file_exists(find_html_file("news",$m Line 67  if (file_exists(find_html_file("news",$m
67          $num_selected=0;          $num_selected=0;
68          $sql="select          $sql="select
69                          id,upper(title) as title,town_date,body,more,pdf,                          id,upper(title) as title,town_date,body,more,pdf,
70                          (date-now()::date) as comming                          (date-now()::date) as comming,type,title as title_lc
71                  from news $sql_where order by date desc $sql_limit";                  from news $sql_where order by priority desc,date desc $sql_limit";
72  #       print "$sql";  #       print "$sql";
73          $sth = $dbh->prepare("$sql");          $sth = $dbh->prepare("$sql");
74          $sth->execute();          $sth->execute();
# Line 86  if (file_exists(find_html_file("news",$m Line 90  if (file_exists(find_html_file("news",$m
90                  ));                  ));
91          }          }
92    
93            if (isset($id) && $num_selected == 1) {
94                    if ($data[0][type] == "n") {
95                            $title.=" : News : ".$data[0][title_lc];
96                    } elseif ($data[0][type] == "e") {
97                            $title.=" : Event : ".$data[0][title_lc];
98                    } elseif ($data[0][type] == "c") {
99                            $title.=" : Community : ".$data[0][title_lc];
100                    } elseif ($data[0][type] == "r") {
101                            $title.=" : Result : ".$data[0][title_lc];
102                    }
103            }
104    
105          $smarty->assign("data",$data);          $smarty->assign("data",$data);
106    
107          $main=$smarty->fetch("new.tpl");          $main=$smarty->fetch("new.tpl");
# Line 101  if (file_exists(find_html_file("news",$m Line 117  if (file_exists(find_html_file("news",$m
117  }  }
118    
119  include("common.inc");  include("common.inc");
120  $smarty->assign( array(back_url=>$back_url, MAIN=>$main));  $smarty->assign( array(back_url=>$back_url, MAIN=>$main,
121            Section_title=>$title ) );
122    
123  $smarty->display("index.tpl");  $smarty->display("index.tpl");
124  ?>  ?>

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.7

  ViewVC Help
Powered by ViewVC 1.1.26