/[health_html]/inc/pgLifestyle.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 /inc/pgLifestyle.php

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

revision 1.10 by ravilov, Thu Oct 4 14:59:35 2001 UTC revision 1.11 by ravilov, Wed Oct 10 12:40:58 2001 UTC
# Line 13  Line 13 
13                          }                          }
14                          if ($down_id) $dbh->dbh_do("UPDATE news SET ord = ord + 1 WHERE (news_id = $down_id)");                          if ($down_id) $dbh->dbh_do("UPDATE news SET ord = ord + 1 WHERE (news_id = $down_id)");
15                          if ($up_id) $dbh->dbh_do("UPDATE news SET ord = ord - 1 WHERE (news_id = $up_id)");                          if ($up_id) $dbh->dbh_do("UPDATE news SET ord = ord - 1 WHERE (news_id = $up_id)");
16                            if ($flip_id) $dbh->dbh_do("UPDATE news SET prikazi = NOT prikazi WHERE (news_id = $flip_id)");
17                  }                  }
18                  $cat = "l"; $acat = "l";                  $cat = "l"; $acat = "l";
19                  if ($section_menu == "sex") {                  if ($section_menu == "sex") {
# Line 59  Line 60 
60                                  for ($j = 0; $j < count($art["text"]); $j++)                                  for ($j = 0; $j < count($art["text"]); $j++)
61                                          $art["text"][$j]["text"] = ParseNewline(MyEscape($art["text"][$j]["text"]), true);                                          $art["text"][$j]["text"] = ParseNewline(MyEscape($art["text"][$j]["text"]), true);
62                                  $tpl->assign("kol_text", $art["text"]);                                  $tpl->assign("kol_text", $art["text"]);
                                 include_once("inc/author.php");  
63                                  $tpl->assign("AUTHOR", GetAuthor($art["au_pic"],                                  $tpl->assign("AUTHOR", GetAuthor($art["au_pic"],
64                                          $art["au_alt"], $art["au_info"],                                          $art["au_alt"], $art["au_info"],
65                                          $art["au_w"], $art["au_h"]));                                          $art["au_w"], $art["au_h"]));
66                                  $tpl->assign("kol_links", GetLinks($art["read"] && $art["id"],                                  $tpl->assign("kol_links", GetLinks(
67                                          /* MyEscape($art["more"]) */ (count($art["text"]) > 0 && $art["id"]) ? $art["more"] : "",                                          (($art["read"] || $art["au_pic"] || $art["au_info"]) && $art["id"]) ? $art["read"] : "",
68                                            /* MyEscape($art["more"]) */ /* (count($art["text"]) > 0 && $art["id"]) ? $art["more"] : "", */ "",
69                                          MyEscape($art["more_title"]), $art["id"], $empty["category"],                                          MyEscape($art["more_title"]), $art["id"], $empty["category"],
70                                          "kol", $isEdit, false, false, false));                                          "kol", false, false, false, $art["show"]));
71                                  $tpl->assign("kol_read", $art["read"] || ($art["more"] && !strstr($art["more"], "?")) ? $art["read"] : "");                                  $tpl->assign("kol_read", $art["read"] || ($art["more"] && !strstr($art["more"], "?")) ? $art["read"] : "");
72                          }                          }
73                  }                  }
74                  if (!$offset) $offset = 0;                  if (!$offset) $offset = 0;
75                  $empty = array("category" => $cat, "limit" => 11, "offset" => $offset, "npar" => 0);                  $empty = array("category" => $cat, "limit" => 11, "offset" => $offset, "npar" => 0);
76                    $arts = newsLoad(-1, $empty["category"], $empty["limit"], 0, $empty["npar"]);
77                    $a2 = array();
78                    for ($i = 0; $i < count($arts); $i++) {
79                            array_push($a2, array(
80                                    "cat" => $empty["category"],
81                                    "id" => $arts[$i]["id"],
82                                    "title" => MyEscape($arts[$i]["title"]),
83                                    "abs" => $offset ? true : false
84                            ));
85                    }
86                    $tpl->assign("MENU2", array(
87                            array("title" => "", "class" => "head", "pre" => "", "items" => $a2)
88                    ));
89                  if ($top_edit && $ed_id <= 0 && $isEdit) {                  if ($top_edit && $ed_id <= 0 && $isEdit) {
90                          include_once("inc/newsEdit.php");                          include_once("inc/newsEdit.php");
91                          $ed = newsEdit($empty, "top_edit");                          $ed = newsEdit($empty, "top_edit");
# Line 105  Line 119 
119                                          "titlepic_width" => $art["pic_w"],                                          "titlepic_width" => $art["pic_w"],
120                                          "titlepic_height" => $art["pic_h"],                                          "titlepic_height" => $art["pic_h"],
121                                          "text" => $art["text"],                                          "text" => $art["text"],
122                                          "links" => GetLinks($art["read"] && $art["id"],                                          "links" => GetLinks((($art["read"] || $art["au_pic"] || $art["au_info"]) && $art["id"]) ? $art["read"] : "",
123                                                  /* MyEscape($art["more"]) */ ((count($art["text"]) > 0 || strstr("?", $art["more"]) == 0) && $art["id"]) ? $art["more"] : "",                                                  /* MyEscape($art["more"]) */ /* ((count($art["text"]) > 0 || strstr("?", $art["more"]) == 0) && $art["id"]) ? $art["more"] : "", */ "",
124                                                  MyEscape($art["more_title"]), $art["id"], $empty["category"], "top",                                                  MyEscape($art["more_title"]), $art["id"], $empty["category"], "top",
125                                                  $isEdit, true, ($i > 0), ($i < count($arts) - 1)),                                                  true, ($i > 0), ($i < count($arts) - 1), $art["show"]),
126                                          "read" => $art["read"] || ($art["more"] && !strstr($art["more"], "?")) ? $art["read"] : ""                                          "read" => $art["read"] || ($art["more"] && !strstr($art["more"], "?")) ? $art["read"] : ""
127                                  ));                                  ));
128                          }                          }

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11

  ViewVC Help
Powered by ViewVC 1.1.26