/[pliva-si]/index.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 /index.php

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

revision 1.7 by dpavlin, Mon Jul 9 14:25:36 2001 UTC revision 1.8 by dpavlin, Sun Jul 22 18:02:06 2001 UTC
# Line 29  if (isset($h) && file_exists(find_html_f Line 29  if (isset($h) && file_exists(find_html_f
29          $main=$smarty->fetch("$main_file.tpl");          $main=$smarty->fetch("$main_file.tpl");
30  } elseif (find_html_file("h",$section)) {  } elseif (find_html_file("h",$section)) {
31          $main=join('',file(find_html_file("h",$section)));          $main=join('',file(find_html_file("h",$section)));
32    } elseif (isset($static)) {
33            if (strstr($static,",")) {
34                    $d=explode(",",$static);        // dir,file
35            } else {
36                    $d=array($static,$static);
37            }
38            if (find_html_file("static/$d[0]",$d[1])) {
39                    $main=join('',file(find_html_file("static/$d[0]",$d[1])));
40            } else {
41                    $main="<b>Can't find static/$d[0]/$d[1]</b>";
42            }
43  } elseif (file_exists("sections/$section.inc")) {  } elseif (file_exists("sections/$section.inc")) {
44          include("sections/$section.inc");          include("sections/$section.inc");
45  } else {  } else {

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

  ViewVC Help
Powered by ViewVC 1.1.26