/[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.24 by dpavlin, Mon Apr 29 13:11:39 2002 UTC
# Line 27  if ($section == "investor") { Line 27  if ($section == "investor") {
27          $lpic="new"; $lext=".jpg";          $lpic="new"; $lext=".jpg";
28          $mpic="new.gif";          $mpic="new.gif";
29          $back_url="index.php";          $back_url="index.php";
30          $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
31  }  }
32    
33  $smarty->assign( array ( lpic=>$lpic, lext=>$lext, mpic=>$mpic, ) );  $smarty->assign( array ( lpic=>$lpic, lext=>$lext, mpic=>$mpic, ) );
34    
35  include("find_html_file.inc");  include("find_html_file.inc");
36    include("news_type.inc");
37    
38  if (file_exists(find_html_file("news",$more))) {  if (file_exists(find_html_file("news",$more))) {
39    
# Line 47  if (file_exists(find_html_file("news",$m Line 48  if (file_exists(find_html_file("news",$m
48          if (isset($type)) {          if (isset($type)) {
49                  if ($type == "n") {                  if ($type == "n") {
50                          $sql_where .= " and (type='n' or type='i')";                          $sql_where .= " and (type='n' or type='i')";
51                          $title.=" : News";                  } elseif ($type == "e" || $type == "f" || $type == "c") {
52                  } elseif ($type == "e") {                          $sql_where .= " and type='".$type."'";
                         $sql_where .= " and type='e'";  
                         $title.=" : Events";  
                 } elseif ($type == "c") {  
                         $sql_where .= " and type='c'";  
                         $title.=" : Community";  
53                  }                  }
54                    $title.=" : ".$news_type[$type];
55          }          }
56    
57          if (! isset($show) && !isset($start)) {          if (! isset($show) && !isset($start)) {
# Line 107  if (file_exists(find_html_file("news",$m Line 104  if (file_exists(find_html_file("news",$m
104          }          }
105    
106          if (isset($id) && $num_selected == 1) {          if (isset($id) && $num_selected == 1) {
107                  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];  
                 }  
108          }          }
109    
110    

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

  ViewVC Help
Powered by ViewVC 1.1.26