summaryrefslogtreecommitdiff
path: root/scire
diff options
context:
space:
mode:
authorPreston Cody <codeman@gentoo.org>2008-01-11 03:19:58 +0000
committerPreston Cody <codeman@gentoo.org>2008-01-11 03:19:58 +0000
commit1a87ec996788051508c1726ceb27fdb9c50b7e31 (patch)
tree00ec0697135953b1c552770b91dcbf541a816e32 /scire
parentadding a regex-replace to strip carriage returns from script data. (diff)
downloadscire-1a87ec996788051508c1726ceb27fdb9c50b7e31.tar.gz
scire-1a87ec996788051508c1726ceb27fdb9c50b7e31.tar.bz2
scire-1a87ec996788051508c1726ceb27fdb9c50b7e31.zip
remove minute and 5-min interval possibilities. 15 min is our minimum.
adodb's path is now in php5. dunno why they changed it, but kinda annoying. svn path=/trunk/; revision=348
Diffstat (limited to 'scire')
-rw-r--r--scire/.lib/config.php2
-rwxr-xr-xscire/.smarty/templates/add_job.tpl2
-rw-r--r--scire/job.php4
3 files changed, 4 insertions, 4 deletions
diff --git a/scire/.lib/config.php b/scire/.lib/config.php
index f0fafcd..d2cf12a 100644
--- a/scire/.lib/config.php
+++ b/scire/.lib/config.php
@@ -14,7 +14,7 @@ $db_password = 'moria';
$db_sessions_table = 'sessions';
# ADOdb path
-$ADOdb_path = '/usr/share/php/adodb/';
+$ADOdb_path = '/usr/share/php5/adodb/';
$db_type = 'mysql';
# Smarty directory
diff --git a/scire/.smarty/templates/add_job.tpl b/scire/.smarty/templates/add_job.tpl
index e652a40..8c6b804 100755
--- a/scire/.smarty/templates/add_job.tpl
+++ b/scire/.smarty/templates/add_job.tpl
@@ -317,7 +317,7 @@ Recurring stuff here. <b>You need to select all of them to get it to save the sc
</td></tr>
<tr><td>
<hr>
-<label for="validity_period">Validity Period (in seconds?): </label><input type="text" name="validity_period" />
+<label for="validity_period">Validity Period (in minutes?): </label><input type="text" name="validity_period" />
</td></tr>
<tr><td>
diff --git a/scire/job.php b/scire/job.php
index dfdc74b..48be507 100644
--- a/scire/job.php
+++ b/scire/job.php
@@ -12,8 +12,8 @@ $jobid = "";
# Minutes array
$minutes = array(
- "*" => "Every minute",
- "*/2" => "Every other minute",
+# "*" => "Every minute",
+# "*/2" => "Every other minute",
"*/5" => "Every five minutes",
"*/10" => "Every ten minutes",
"*/15" => "Every fifteen minutes",