summaryrefslogtreecommitdiffstats
path: root/frontends/php/js
diff options
context:
space:
mode:
authorartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2008-08-19 11:35:09 +0000
committerartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2008-08-19 11:35:09 +0000
commit84a4272b58e6bcc5be3366adc5771851c522eae3 (patch)
treee088fd336667817dda9b8b89ddb3ea0ee6a327b8 /frontends/php/js
parentc18881cf3bf1288bff75ecb10df386ec25a0cab9 (diff)
downloadzabbix-84a4272b58e6bcc5be3366adc5771851c522eae3.tar.gz
zabbix-84a4272b58e6bcc5be3366adc5771851c522eae3.tar.xz
zabbix-84a4272b58e6bcc5be3366adc5771851c522eae3.zip
- [DEV-137] improvements in sqls (Artem)
git-svn-id: svn://svn.zabbix.com/trunk@5926 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/js')
-rw-r--r--frontends/php/js/calendar.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontends/php/js/calendar.js b/frontends/php/js/calendar.js
index d47e4d1d..bc5a4d9e 100644
--- a/frontends/php/js/calendar.js
+++ b/frontends/php/js/calendar.js
@@ -254,12 +254,12 @@ setSDateDMY: function(d,m,y){
result = true;
}
- if((y > 71) && (y < 1971)){
+ if((y > 71) && (y < 1970)){
this.sdt.setYear(y);
result = true;
}
- if((y > 1971) && (y < 10000)){
+ if((y > 1970) && (y < 10000)){
this.sdt.setFullYear(y);
result = true;
}