// Use relative address of config file
// Change this, if you move you cron directory.
$dir=substr(__FILE__, 0, strrpos(__FILE__, '/'));
-require($dir.'/../wwwroot/config/config.inc');
+require_once($dir.'/../wwwroot/config/config.inc');
//connecting to database and creating universal $db object
-require(INCLUDE_DIR.'/log.inc');
-require(INCLUDE_DIR.'/database.inc');
-require(INCLUDE_DIR.'/nodes.inc');
-require(INCLUDE_DIR.'/permissions.inc');
-require(INCLUDE_DIR.'/ubik.inc');
+require_once(INCLUDE_DIR.'/log.inc');
+require_once(INCLUDE_DIR.'/database.inc');
+require_once(INCLUDE_DIR.'/nodes.inc');
+require_once(INCLUDE_DIR.'/permissions.inc');
+require_once(INCLUDE_DIR.'/ubik.inc');
$_SESSION['user_id']=UBIK_ID;
// Use relative address of config file
// Change this, if you move you cron directory.
$dir=substr(__FILE__, 0, strrpos(__FILE__, '/'));
-require($dir.'/../wwwroot/config/config.inc');
+require_once($dir.'/../wwwroot/config/config.inc');
-require(INCLUDE_DIR.'/database.inc');
-require(INCLUDE_DIR.'/senate.inc');
-require(INCLUDE_DIR.'/log.inc');
+require_once(INCLUDE_DIR.'/database.inc');
+require_once(INCLUDE_DIR.'/log.inc');
$db = new CLASS_DATABASE();
$db->query('update users set user_k = '. DAILY_K);
// Use relative address of config file
// Change this, if you move you cron directory.
$dir=substr(__FILE__, 0, strrpos(__FILE__, '/'));
-require($dir.'/../wwwroot/config/config.inc');
+require_once($dir.'/../wwwroot/config/config.inc');
//connecting to database and creating universal $db object
-require(INCLUDE_DIR.'/log.inc');
-require(INCLUDE_DIR.'/database.inc');
-require(INCLUDE_DIR.'/nodes.inc');
-require(INCLUDE_DIR.'/senate.inc');
+require_once(INCLUDE_DIR.'/log.inc');
+require_once(INCLUDE_DIR.'/database.inc');
+require_once(INCLUDE_DIR.'/nodes.inc');
$db=new CLASS_DATABASE();
foreach ($requests as $request) {
// Use relative address of config file
// Change this, if you move you cron directory.
$dir=substr(__FILE__, 0, strrpos(__FILE__, '/'));
-require($dir.'/../wwwroot/config/config.inc');
+require_once($dir.'/../wwwroot/config/config.inc');
-require(INCLUDE_DIR.'/database.inc');
-require(INCLUDE_DIR.'/senate.inc');
+require_once(INCLUDE_DIR.'/database.inc');
$db = new CLASS_DATABASE();
$db->query('insert into node_content select node_id,node_content from nodes where ( DATE_SUB(CURDATE(),INTERVAL 2 DAY) < node_created OR DATE_SUB(CURDATE(),INTERVAL 2 DAY) < node_updated) ON DUPLICATE KEY UPDATE node_content.node_content = nodes.node_content;');
- put "setParent" everywhere
- set_synapse_weigth not working sometimes (synapse from 904 to 332 for example)
- Also weight is always shown as "1"
+ Also weight is always shown as "1" (add {$synapse.weight}
<?php
- function smarty_function_get_nodes_by_parent($params,&$smarty) {
- global $node;
-
- $parent=$params['parent'];
- $permissions=permissions::checkPerms($parent);
- if (!$permissions['r']) {
- $error=$error_messages['READ_PERMISSION_ERROR'];
- return false;
- }
- $parent_vectot=$parent['node_vector'];
-
- if ($params['listing_amount']=='all') $listing_amount='100';
- else $listing_amount=$params['listing_amount'];
- if (empty($params['offset'])) $offset=0;
- else $offset=$params['offset'];
-
- if ($params['orderby']) {
+function smarty_function_get_nodes_by_parent($params,&$smarty) {
+ global $node;
+
+ $parent=$params['parent'];
+ $permissions=permissions::checkPerms($parent);
+ if (!$permissions['r']) {
+ $error=$error_messages['READ_PERMISSION_ERROR'];
+ return false;
+ }
+ $parent_vectot=$parent['node_vector'];
+
+ if ($params['listing_amount']=='all') $listing_amount='100'; // XXX remove constant
+ else $listing_amount=$params['listing_amount'];
+ if (empty($params['offset'])) $offset=0;
+ else $offset=$params['offset'];
+
+ if ($params['orderby']) {
$orderby=addslashes($params['orderby']);
- }
+ }
- global $db,$node;
- $node_id=$node['node_id'];
- $user_id=$_SESSION['user_id'];
+ global $db,$node;
+ $node_id=$node['node_id'];
+ $user_id=$_SESSION['user_id'];
if ($params['time']) $sql_time=" nodes.node_created > '".addslashes($params['time'])."' and ";
- $q="select parent.node_name as parent_name,users.*,nodes.*,node_access.node_user_subchild_count from nodes left join nodes as parent on parent.node_id=nodes.node_parent left join node_access on node_access.node_id=nodes.node_id and node_access.user_id='$user_id' left join users on users.user_id=nodes.node_creator where ";
- $q.=" $sql_time nodes.node_parent='$parent' and nodes.node_system_access!='private'";
+ $q="select parent.node_name as parent_name,users.*,nodes.*,node_access.node_user_subchild_count from nodes left join nodes as parent on parent.node_id=nodes.node_parent left join node_access on node_access.node_id=nodes.node_id and node_access.user_id='$user_id' left join users on users.user_id=nodes.node_creator where ";
+ $q.=" $sql_time nodes.node_parent='$parent' and nodes.node_system_access!='private'";
if ($_POST['template_event']=='filter_by') {
- if ($_POST['search_type']=='content')
+ if ($_POST['search_type']=='content')
$sql_type.=" and node_content like '%".addslashes($_POST['node_content'])."%' ";
- else {
- $q2="select user_id from users where login='".$_POST['node_content']."'";
- $userset=$db->query($q2);
- $userset->next();
- $id=$userset->getString('user_id');
- $sql_type=" and nodes.node_creator='$id'";
- }
+ else {
+ $q2="select user_id from users where login='".mysql_real_escape_string($_POST['node_content'])."'";
+ $userset=$db->query($q2);
+ $userset->next();
+ $id=$userset->getString('user_id');
+ $sql_type=" and nodes.node_creator='$id'";
+ }
$q.=$sql_type;
- }
+ }
- if ($orderby) $q.=" order by $orderby ";
- else $q.=" order by nodes.node_id desc ";
- $q.= " LIMIT $offset,$listing_amount ";
- $set=$db->query($q);
- while ($set->next()) $pole[]=$set->getRecord();
- $smarty->assign('get_nodes_by_parent',$pole);
+ if ($orderby) $q.=" order by $orderby ";
+ else $q.=" order by nodes.node_id desc ";
+ $q.= " LIMIT $offset,$listing_amount ";
+ $set=$db->query($q);
+ while ($set->next()) $pole[]=$set->getRecord();
+ $smarty->assign('get_nodes_by_parent',$pole);
- }
+}
?>
+++ /dev/null
-function smarty_function_get_nodes_by_external_link($params,&$smarty) {
-
-if ($params['orderby']=='desc') $orderby="desc"; else $orderby="asc";
-echo 'xxxxxxxxxxxxxxxx';
-$external_link=$params['external_link'];
-if ($params['listing_amount']=='all')
-$listing_amount='23232323232323323';
-else $listing_amount=$params['listing_amount'];
-
-if (empty($params['offset'])) $offset=0;
-else $offset=$params['offset'];
-
-global $db,$node;
-
-$q="select users.*,nodes.*,node_content.* from nodes left join
-node_content on (node_content.node_id=nodes.node_id) left
-join users on users.user_id=nodes.node_creator where external_link like '$external_link%' order by node_created $orderby LIMIT $offset,$listing_amount";
-
-$set=$db->query($q);
-while ($set->next()) $pole[]=$set->getRecord();
-$smarty->assign('get_nodes_by_external_link',$pole);
-}
-?>
\ No newline at end of file