xaizek / rocketgit (License: AGPLv3+) (since 2018-12-09)
Light and fast Git hosting solution suitable to serve both as a hub or as a personal code storage with its tickets, pull requests, API and much more.
Commit e6fd4033b3018fb20d22f6e29c162b4330ec935f

Corrected set_pass function cache actions
Author: Catalin(ux) M. BOIE
Author date (UTC): 2016-04-25 05:20
Committer name: Catalin(ux) M. BOIE
Committer date (UTC): 2016-04-25 05:20
Parent(s): 746371ed9154915f748f8b0bd95293e823673193
Signing key:
Tree: 15d4665e87e270d100368040540b554dce83141d
File Lines added Lines deleted
inc/user.inc.php 2 1
File inc/user.inc.php changed (mode: 100644) (index ca4cbe7..ff1c4cd)
... ... function rg_user_info($db, $uid, $user, $email)
631 631 $c = rg_cache_get('user' . '::' . $uid); $c = rg_cache_get('user' . '::' . $uid);
632 632 if (($c !== FALSE) if (($c !== FALSE)
633 633 && (isset($c['info'])) && (isset($c['info']))
634 && (isset($c['info']['uid']))) {
634 && (isset($c['info']['itime']))) {
635 635 $ret = $c['info']; $ret = $c['info'];
636 636 $ret['exists'] = 1; $ret['exists'] = 1;
637 637 rg_user_cosmetic($ret); rg_user_cosmetic($ret);
 
... ... function rg_user_set_pass($db, $uid, $pass)
1356 1356 } }
1357 1357 rg_sql_free_result($res); rg_sql_free_result($res);
1358 1358
1359 unset($params['uid']);
1359 1360 rg_cache_merge('user' . '::' . $uid . '::' . 'info', rg_cache_merge('user' . '::' . $uid . '::' . 'info',
1360 1361 $params, RG_SOCKET_NO_WAIT); $params, RG_SOCKET_NO_WAIT);
1361 1362
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/rocketgit

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/rocketgit

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master