aboutsummaryrefslogtreecommitdiffstats
path: root/lib/AdminPanel/Shared
diff options
context:
space:
mode:
authorAngelo Naselli <anaselli@linux.it>2014-10-14 22:42:03 +0200
committerAngelo Naselli <anaselli@linux.it>2014-10-14 22:42:03 +0200
commite59223e7737d9d85fdbb155ad30c2172f81e9774 (patch)
tree94c2d49d49c6491ca8b7d680c05915d91e41ab5d /lib/AdminPanel/Shared
parentb6132cc811fcd1968643c736c0a0f6346aec89ea (diff)
downloadcolin-keep-e59223e7737d9d85fdbb155ad30c2172f81e9774.tar
colin-keep-e59223e7737d9d85fdbb155ad30c2172f81e9774.tar.gz
colin-keep-e59223e7737d9d85fdbb155ad30c2172f81e9774.tar.bz2
colin-keep-e59223e7737d9d85fdbb155ad30c2172f81e9774.tar.xz
colin-keep-e59223e7737d9d85fdbb155ad30c2172f81e9774.zip
fixed user change name and expirirng time
Diffstat (limited to 'lib/AdminPanel/Shared')
-rw-r--r--lib/AdminPanel/Shared/Users.pm8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/AdminPanel/Shared/Users.pm b/lib/AdminPanel/Shared/Users.pm
index 9407734..73322cd 100644
--- a/lib/AdminPanel/Shared/Users.pm
+++ b/lib/AdminPanel/Shared/Users.pm
@@ -1597,6 +1597,14 @@ sub Add2UsersGroup {
return $usersgroup->Gid($self->USER_GetValue);
}
+sub _ConvTime {
+ my ($day, $month, $year) = @_;
+ my ($tm, $days, $mon, $yr);
+ $mon = $month - 1; $yr = $year - 1900;
+ $tm = POSIX::mktime(0, 0, 0, $day, $mon, $yr);
+ $days = ceil($tm / (24 * 60 * 60));
+ return $days;
+}
no Moose;
__PACKAGE__->meta->make_immutable;