aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * | remove apps translations - they live in owncloud/apps nowThomas Mueller2012-10-16770-133244/+0
| | |
| * | Fix unshareAll()Michael Gapczynski2012-10-161-2/+4
| | |
| * | Delete user files in /data/ after deleting a userLukas Reschke2012-10-161-0/+4
| | |
| * | Add unshareAll() function to Share APIMichael Gapczynski2012-10-161-0/+14
| | |
| * | Merge pull request #36 from scambra/filecache-fixesicewind19912012-10-162-1/+10
| |\ \ | | | | | | | | delete fscache on deleting user
| | * | delete fscache on deleting userscambra2012-10-162-1/+10
| | |/
| * / Use `get_magic_quotes_gpc()` to determine if magic_quotes is enabledLukas Reschke2012-10-161-1/+1
| |/ | | | | | | set_magic_quotes_runtime gives a PHP warning
* | Merge branch 'master' of github.com:owncloud/core into vcategories_dbThomas Tanghus2012-10-16119-1410/+7138
|\|
| * Set oc_token to httponlyLukas Reschke2012-10-161-1/+1
| |
| * Merge pull request #31 from visit1985/persistentcookiesLukas Reschke2012-10-163-14/+70
| |\ | | | | | | reresubmit: improved persistent cookies :)
| | * 128byte is not 128bit - now we realy use 256bit (same as PHPSESSID)Michael Göhler2012-10-153-4/+4
| | |
| | * extend configkey column to hold 128bit valuesMichael Göhler2012-10-142-2/+2
| | |
| | * implement fixed php session timeout and session id regenerationMichael Göhler2012-10-141-0/+22
| | |
| | * removed username and password from token generationMichael Göhler2012-10-141-2/+2
| | |
| | * fixed typo and redundant method callMichael Göhler2012-10-141-2/+1
| | |
| | * added a warning message to the log when a cookie is rejectedMichael Göhler2012-10-141-0/+1
| | |
| | * fixed wrong variable usageMichael Göhler2012-10-141-5/+5
| | |
| | * call unsetMagicInCookie if token is invalidMichael Göhler2012-10-141-2/+2
| | |
| | * forgot a class nameMichael Göhler2012-10-141-2/+2
| | |
| | * delete all tokens on password changeMichael Göhler2012-10-142-3/+7
| | |
| | * further improvements on multiple login token supportMichael Göhler2012-10-141-3/+13
| | | | | | | | | | | | | | | | | | outdated tokens are deleted before checking against cookies if an invalid token is used we delete all stored tokens for saveness used token will be replaced by a new one after successful authentication
| | * improve token securityMichael Göhler2012-10-141-1/+1
| | | | | | | | | | | | switched from time() to internal method OC_Util::generate_random_bytes()
| | * Make the lifetime of the remember login cookieBart Visscher2012-10-143-5/+9
| | |
| | * Cleanup login tokens on login successBart Visscher2012-10-141-0/+13
| | |
| | * Add support for multiple login cookie tokensBart Visscher2012-10-141-9/+12
| | |
| * | normalize path to avoid problems with trailing slashes, double-slashes, etc.Björn Schießle2012-10-161-2/+2
| | |
| * | [tx-robot] updated from transifexJenkins for ownCloud2012-10-16106-1370/+6973
| | |
| * | Make enhanced auth configurableLukas Reschke2012-10-163-15/+24
| | |
| * | Don't add the enhanced auth time to the configurationLukas Reschke2012-10-161-4/+1
| | |
| * | Set a standard value for enhanced auth timeLukas Reschke2012-10-161-1/+1
| | |
| * | Make enhanced auth time configurableLukas Reschke2012-10-164-6/+10
| | |
| * | Move isUserVerified to OC_UtilLukas Reschke2012-10-163-13/+14
| | |
| * | Move the ( to the right positionLukas Reschke2012-10-161-2/+2
| | |
| * | Password check for adminsLukas Reschke2012-10-161-2/+6
| | |
| * | Fix PHP noticeLukas Reschke2012-10-161-2/+2
| | |
| * | Fix PHP noticeLukas Reschke2012-10-161-1/+1
| | |
| * | Add isUserVerified()Lukas Reschke2012-10-161-1/+12
| | |
| * | Correct check for adminLukas Reschke2012-10-161-4/+2
| | |
| * | Merge branch 'extended_log'Victor Dubiniuk2012-10-162-0/+26
| |\ \ | | | | | | | | | | | | PHP errors logging into the owncloud log
| | * | Uncaught exception loggingVicDeo2012-09-262-2/+8
| | | |
| | * | Log PHP errors to the OC logVictor Dubiniuk2012-09-122-0/+20
| | | |
| * | | Verify passwords for adminsLukas Reschke2012-10-161-3/+11
| | | |
| * | | Remove verify user from personal.phpLukas Reschke2012-10-151-1/+0
| | | |
| * | | Revert "Verify user login before changing the password reset mail"Lukas Reschke2012-10-151-1/+0
| | | | | | | | | | | | | | | | This reverts commit 9aa9110fd906bc9191adbb129bf421ede77ccad7.
| * | | Revert "Remove old password check from changepassword and use verifyUser ↵Lukas Reschke2012-10-152-3/+5
| | | | | | | | | | | | | | | | | | | | | | | | instead" This reverts commit e6b8153865a521a4750ec44016c5f22f453edfe1.
| * | | "deny from all" instead directoryLukas Reschke2012-10-151-3/+1
| | | |
| * | | Show a warning in the installer if .htaccess is not workingLukas Reschke2012-10-152-0/+13
| | | |
* | | | Merge branch 'master' of github.com:owncloud/core into vcategories_dbThomas Tanghus2012-10-15266-5363/+8075
|\| | |
| * | | Merge pull request #35 from visit1985/logonpageLukas Reschke2012-10-151-2/+2
| |\ \ \ | | | | | | | | | | avoid undefined index warning on login page
| | * | | avoid undefined index warning on login pageMichael Göhler2012-10-151-2/+2
| |/ / /