diff options
author | Georg Ehrke <dev@georgswebsite.de> | 2012-07-06 11:23:20 +0200 |
---|---|---|
committer | Georg Ehrke <dev@georgswebsite.de> | 2012-07-06 11:23:20 +0200 |
commit | f875240b47823d28c5169b354ffe1a3e80aaf57e (patch) | |
tree | 4f51cbc750f9fa83ce29cb537604b544c1121691 /apps/calendar | |
parent | 9a10efd80f237255e3fcd44fe28eb5330aa7dfcb (diff) | |
download | nextcloud-server-f875240b47823d28c5169b354ffe1a3e80aaf57e.tar.gz nextcloud-server-f875240b47823d28c5169b354ffe1a3e80aaf57e.zip |
comment out some code
Diffstat (limited to 'apps/calendar')
-rw-r--r-- | apps/calendar/lib/import.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/calendar/lib/import.php b/apps/calendar/lib/import.php index f348be37944..d36891cb2b9 100644 --- a/apps/calendar/lib/import.php +++ b/apps/calendar/lib/import.php @@ -238,18 +238,18 @@ class OC_Calendar_Import{ * @brief generates an unique ID * @return string */ - private function createUID(){ - return substr(md5(rand().time()),0,10); - } + //private function createUID(){ + // return substr(md5(rand().time()),0,10); + //} /* * @brief checks is the UID is already in use for another event * @param string $uid uid to check * @return boolean */ - private function isUIDAvailable($uid){ - - } + //private function isUIDAvailable($uid){ + // + //} /* * @brief generates a proper VCalendar string |