/[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.21 by dpavlin, Fri Apr 5 11:31:13 2002 UTC revision 1.27 by dpavlin, Tue Apr 30 13:26:33 2002 UTC
# Line 21  if ($section == "investor") { Line 21  if ($section == "investor") {
21          if (! isset($type)) {          if (! isset($type)) {
22                  $sql_where .= " and type='i'";                  $sql_where .= " and type='i'";
23          }          }
         $title.=" : Investors News";  
24  } else {  } else {
         $title="What's New";  
         $lpic="new"; $lext=".jpg";  
         $mpic="new.gif";  
25          $back_url="index.php";          $back_url="index.php";
26          $sql_where.=" and (type='a' or type='c' or type='e' 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
27  }  }
28    
29  $smarty->assign( array ( lpic=>$lpic, lext=>$lext, mpic=>$mpic, ) );  $smarty->assign( array ( lpic=>$lpic, lext=>$lext, mpic=>$mpic, ) );
30    
31  include("find_html_file.inc");  include("find_html_file.inc");
32    include("news_type.inc");
33    
34  if (file_exists(find_html_file("news",$more))) {  if (file_exists(find_html_file("news",$more))) {
35    
# Line 47  if (file_exists(find_html_file("news",$m Line 44  if (file_exists(find_html_file("news",$m
44          if (isset($type)) {          if (isset($type)) {
45                  if ($type == "n") {                  if ($type == "n") {
46                          $sql_where .= " and (type='n' or type='i')";                          $sql_where .= " and (type='n' or type='i')";
                         $title.=" : News";  
47                  } elseif ($type == "e") {                  } elseif ($type == "e") {
48                          $sql_where .= " and type='e'";                          $sql_where .= " and (type='e' or type='f')";    
49                          $title.=" : Events";                  } elseif ($type == "f") {
50                            $sql_where .= " and type='f'";
51                  } elseif ($type == "c") {                  } elseif ($type == "c") {
52                          $sql_where .= " and type='c'";                          $sql_where .= " and type='c'";
                         $title.=" : Community";  
53                  }                  }
54          }          }
55    
# Line 107  if (file_exists(find_html_file("news",$m Line 103  if (file_exists(find_html_file("news",$m
103          }          }
104    
105          if (isset($id) && $num_selected == 1) {          if (isset($id) && $num_selected == 1) {
106                  if ($data[0][type] == "n") {                  $title.=" : ".$news_type[ $data[0][type] ]." : ".$data[0][title_lc];
                         $title.=" : News : ".$data[0][title_lc];  
                 } elseif ($data[0][type] == "e") {  
                         $title.=" : Event : ".$data[0][title_lc];  
                 } elseif ($data[0][type] == "c") {  
                         $title.=" : Community : ".$data[0][title_lc];  
                 } elseif ($data[0][type] == "r") {  
                         $title.=" : Result : ".$data[0][title_lc];  
                 } elseif ($data[0][type] == "i") {  
                         $title.=" : Investors News : ".$data[0][title_lc];  
                 } elseif ($data[0][type] == "a") {  
                         $title.=" : Annual Report : ".$data[0][title_lc];  
                 } elseif ($data[0][type] == "p") {  
                         $title.=" : Presentations : ".$data[0][title_lc];  
                 }  
107          }          }
108    
109    
# Line 149  include("common.inc"); Line 131  include("common.inc");
131  $smarty->assign( array(back_url=>$back_url, MAIN=>$main,  $smarty->assign( array(back_url=>$back_url, MAIN=>$main,
132          Section_title=>$title ) );          Section_title=>$title ) );
133    
 include("inc/newsletter.php");  
   
134  $smarty->display("index.tpl");  $smarty->display("index.tpl");
135  ?>  ?>

Legend:
Removed from v.1.21  
changed lines
  Added in v.1.27

  ViewVC Help
Powered by ViewVC 1.1.26