Removed multiple require()
[mirrors/Kyberia-bloodline.git] / cron / search_update.php
1 #!/usr/bin/php
2 <?php
3 /*
4 * Script that XXX put xapian here?
5 * Called XXX
6 */
7
8 // Use relative address of config file
9 // Change this, if you move you cron directory.
10 $dir=substr(__FILE__, 0, strrpos(__FILE__, '/'));
11 require_once($dir.'/../wwwroot/config/config.inc');
12
13 require_once(INCLUDE_DIR.'/database.inc');
14
15 $db = new CLASS_DATABASE();
16 $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;');
17 ?>
This page took 0.280192 seconds and 4 git commands to generate.