diff --git a/profile_pictures.module b/profile_pictures.module
index 96f0db8..9c17658 100644
--- a/profile_pictures.module
+++ b/profile_pictures.module
@@ -244,7 +244,8 @@ function profile_pictures_token_list($type = 'all') {
     $tokens['profile_picture']['profile_picture-filename'] = t("File name");
     $tokens['profile_picture']['profile_picture-extension'] = t("File extension");
     $tokens['profile_picture']['profile_picture-name'] = t("Field name");
-  }
+    $tokens['profile_picture']['profile_picture-time'] = t("Unix Timestamp");
+ }
   return $tokens;
 }
 
@@ -256,7 +257,8 @@ function profile_pictures_token_values($type = 'all', $object = NULL) {
   if ($type == 'profile_picture') {
     $tokens['profile_picture-filename'] = $object->filename;
     $tokens['profile_picture-extension'] = $object->extension;
-    $tokens['profile_picture-name'] = $object->name;
+    $tokens['profile_picture-name'] = $object->name;i
+    $tokens['profile_picture-time'] = time();
   }
   return $tokens;
 }
