diff --git a/db/install.sql b/db/install.sql index a294e79b..235e6224 100644 --- a/db/install.sql +++ b/db/install.sql @@ -1161,8 +1161,8 @@ INSERT INTO `Sprache` (`TextID`, `Sprache`, `Text`) VALUES ('to_filter', 'EN', 'filter'), ('pub_schichtplan_tasks_notice', 'DE', 'Die hier angezeigten Aufgaben werden durch die Präferenzen in deinen Einstellungen beeinflusst! Beschreibung der einzelnen Aufgaben.'), ('pub_schichtplan_tasks_notice', 'EN', 'The tasks shown here are influenced by the preferences you defined in your settings! Description of the jobs.'), -('inc_schicht_ical_text', 'DE', 'Zum Abonnieren der angezeigten Schichten in deiner Kalender-Software benutze diesen Link (bitte geheimhalten, im Notfall Deinen API-Key zurücksetzen).'), -('inc_schicht_ical_text', 'EN', 'To subscribe the shifts shown in your calendar software, use this link (please keep secret, otherwise reset the ical key).'), +('inc_schicht_ical_text', 'DE', 'Export der angezeigten Schichten. Im iCal Format oder im JSON Format (bitte geheimhalten, im Notfall Deinen API-Key zurücksetzen).'), +('inc_schicht_ical_text', 'EN', 'Export of shown shifts. iCal format or JSON format available (please keep secret, otherwise reset the api key).'), ('helpers', 'DE', 'Helfer'), ('helpers', 'EN', 'helpers'), ('helper', 'DE', 'Helfer'), diff --git a/includes/model/User_model.php b/includes/model/User_model.php index d79ede17..4e833aef 100644 --- a/includes/model/User_model.php +++ b/includes/model/User_model.php @@ -29,7 +29,7 @@ function User_by_api_key($api_key) { * Generates a new api key for given user. * @param User $user */ -function User_reset_api_key($user) { +function User_reset_api_key(&$user) { $user['api_key'] = md5($user['Nick'] . time() . rand()); sql_query("UPDATE `User` SET `api_key`='" . sql_escape($user['api_key']) . "' WHERE `UID`='" . sql_escape($user['UID']) . "' LIMIT 1"); engelsystem_log("API key resetted."); diff --git a/includes/pages/user_myshifts.php b/includes/pages/user_myshifts.php index a19ee34e..3d3a92ba 100644 --- a/includes/pages/user_myshifts.php +++ b/includes/pages/user_myshifts.php @@ -118,7 +118,7 @@ function user_myshifts() { 'actions' => "Aktion" ), $myshifts_table), $id == $user['UID'] && count($shifts) == 0 ? error(sprintf(Get_Text('pub_myshifts_goto_shifts'), page_link_to('user_shifts')), true) : '', - "