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 1832f125018048ae65dbc6ef5f5dc9a9e7fa71ff

'deleted' field for a bug is added only on 'add' operation
Author: Catalin(ux) M. BOIE
Author date (UTC): 2015-03-19 19:41
Committer name: Catalin(ux) M. BOIE
Committer date (UTC): 2015-03-19 19:41
Parent(s): 00078770ac766c414c3235765168e36f173662ae
Signing key:
Tree: 39c1c89527378ace81ba3dec1f1dcb55ed342b33
File Lines added Lines deleted
inc/bug.inc.php 1 1
File inc/bug.inc.php changed (mode: 100644) (index 40cf306..6c14725)
... ... function rg_bug_edit($db, $login_ui, $ri, $data)
457 457 $data['ip'] = $ip; $data['ip'] = $ip;
458 458 $data['repo_id'] = $ri['repo_id']; $data['repo_id'] = $ri['repo_id'];
459 459 $data['uid'] = $login_ui['uid']; $data['uid'] = $login_ui['uid'];
460 $data['deleted'] = 0;
461 460 if ($add == 1) { if ($add == 1) {
461 $data['deleted'] = 0;
462 462 $sql = "INSERT INTO bugs (bug_id, itime, utime, repo_id" $sql = "INSERT INTO bugs (bug_id, itime, utime, repo_id"
463 463 . ", uid, ip, title, body, state, assigned_uid" . ", uid, ip, title, body, state, assigned_uid"
464 464 . ", deleted)" . ", deleted)"
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