/[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.23 by dpavlin, Mon Apr 29 13:01:49 2002 UTC revision 1.28 by dpavlin, Tue May 7 14:02:33 2002 UTC
# Line 14  if (isset($from)) { Line 14  if (isset($from)) {
14    
15  $sql_where="where $visible_is_true";  $sql_where="where $visible_is_true";
16    
17    unset($menu_item);      // don't modify title in section.inc
18  include("section.inc");  include("section.inc");
19    
20  if ($section == "investor") {  if ($section == "investor") {
# Line 21  if ($section == "investor") { Line 22  if ($section == "investor") {
22          if (! isset($type)) {          if (! isset($type)) {
23                  $sql_where .= " and type='i'";                  $sql_where .= " and type='i'";
24          }          }
         $title.=" : Investors News";  
25  } else {  } else {
         $title="What's New";  
         $lpic="new"; $lext=".jpg";  
         $mpic="new.gif";  
26          $back_url="index.php";          $back_url="index.php";
27          $sql_where.=" and (type='a' or type='c' or type='e' or type='f' or type='i' or type='n' or type='p' or type='r')";              // don't show company profile          $sql_where.=" and (type='a' or type='c' or type='e' or type='f' or type='i' or type='n' or type='p' or type='r')";              // don't show company profile
28  }  }
# Line 48  if (file_exists(find_html_file("news",$m Line 45  if (file_exists(find_html_file("news",$m
45          if (isset($type)) {          if (isset($type)) {
46                  if ($type == "n") {                  if ($type == "n") {
47                          $sql_where .= " and (type='n' or type='i')";                          $sql_where .= " and (type='n' or type='i')";
48                  } elseif ($type == "e" || $type == "c") {                  } elseif ($type == "e") {
49                          $sql_where .= " and type='".$type."'";                          $sql_where .= " and (type='e' or type='f')";    
50                    } elseif ($type == "f") {
51                            $sql_where .= " and type='f'";
52                    } elseif ($type == "c") {
53                            $sql_where .= " and type='c'";
54                  }                  }
                 $title.=" : ".$news_type[$type];  
55          }          }
56    
57          if (! isset($show) && !isset($start)) {          if (! isset($show) && !isset($start)) {
# Line 88  if (file_exists(find_html_file("news",$m Line 88  if (file_exists(find_html_file("news",$m
88                  $tmp="$PHP_SELF?start=".($start+10);                  $tmp="$PHP_SELF?start=".($start+10);
89                  if ($days) $tmp.="&days=$days";                  if ($days) $tmp.="&days=$days";
90                  if ($from) $tmp.="&from=$from";                  if ($from) $tmp.="&from=$from";
91                    if ($type) $tmp.="&type=$type";
92                  $smarty->assign(array(                  $smarty->assign(array(
93                          "multi_page_show" => 1,                          "multi_page_show" => 1,
94                          "multi_page_next" => $tmp                          "multi_page_next" => $tmp
# Line 97  if (file_exists(find_html_file("news",$m Line 98  if (file_exists(find_html_file("news",$m
98                  $tmp="$PHP_SELF?start=".($start-10);                  $tmp="$PHP_SELF?start=".($start-10);
99                  if ($days) $tmp.="&days=$days";                  if ($days) $tmp.="&days=$days";
100                  if ($from) $tmp.="&from=$from";                  if ($from) $tmp.="&from=$from";
101                    if ($type) $tmp.="&type=$type";
102                  $smarty->assign(array(                  $smarty->assign(array(
103                          "multi_page_show" => 1,                          "multi_page_show" => 1,
104                          "multi_page_prev" => $tmp                          "multi_page_prev" => $tmp
# Line 105  if (file_exists(find_html_file("news",$m Line 107  if (file_exists(find_html_file("news",$m
107    
108          if (isset($id) && $num_selected == 1) {          if (isset($id) && $num_selected == 1) {
109                  $title.=" : ".$news_type[ $data[0][type] ]." : ".$data[0][title_lc];                  $title.=" : ".$news_type[ $data[0][type] ]." : ".$data[0][title_lc];
110            } else {
111                    $title.=" : ".$news_type[ $data[0][type] ];
112          }          }
113    
   
114          if (isset($days) && $num_selected == 0) {          if (isset($days) && $num_selected == 0) {
115                  $warning = "There are no news for last $days days.";                  $warning = "There are no news for last $days days.";
116          } elseif ($main == "" && $num_selected == 0) {          } elseif ($main == "" && $num_selected == 0) {
# Line 132  include("common.inc"); Line 135  include("common.inc");
135  $smarty->assign( array(back_url=>$back_url, MAIN=>$main,  $smarty->assign( array(back_url=>$back_url, MAIN=>$main,
136          Section_title=>$title ) );          Section_title=>$title ) );
137    
 include("inc/newsletter.php");  
   
138  $smarty->display("index.tpl");  $smarty->display("index.tpl");
139  ?>  ?>

Legend:
Removed from v.1.23  
changed lines
  Added in v.1.28

  ViewVC Help
Powered by ViewVC 1.1.26