Subject | Hash | Author | Date (UTC) |
---|---|---|---|
Fixed small bug preventing e-mail to show in report | 26d884b3a332f3c3b241c194912b9653749a9427 | Catalin(ux) M. BOIE | 2016-07-07 03:37:23 |
Do not clobber the cron file | 5c68384676d9b8087255dda3b62e3588fc50e6c7 | Catalin(ux) M. BOIE | 2016-07-06 22:03:58 |
When using rg_json_encode, no quotes needed. | c4b7693a81e593918f8c06408f16b4884a92773b | Catalin(ux) M. BOIE | 2016-07-06 05:21:00 |
Remove summary from tables because violates HTML5 specs. :( | 11865f18e979f3849dbb265e5c5350f4a638088b | Catalin(ux) M. BOIE | 2016-07-06 05:00:11 |
Bump version to 0.55 | 58652b8250a867c0f4e9e3a9c76737443f242b36 | Catalin(ux) M. BOIE | 2016-07-06 04:48:24 |
Big commit of a lot of unrelated changes. Shame on me! | e503666df79ef1553d0bb7ffd1d12a6b62748b1c | Catalin(ux) M. BOIE | 2016-07-06 04:44:43 |
Do not free resources if query fails. | 57baca81e9087a00a8e2e1807c932de2fb9769c4 | Catalin(ux) M. BOIE | 2016-06-26 11:47:09 |
Packaging changes: prepared for Debian build | c32cb09dc84615f4984ce5f8fac4064accbeeb28 | Catalin(ux) M. BOIE | 2016-06-12 05:59:14 |
webhooks - rename Name to Type | 7d774d4818950b3d3916e834b0dde3081b90960e | Catalin(ux) M. BOIE | 2016-05-08 11:36:45 |
Correct license for spec file (Affero -> A) | 3635ec1e7b416524ad15e06c884b4546600d68e4 | Catalin(ux) M. BOIE | 2016-05-08 11:09:01 |
Bump version to 0.54 | a6f90aaaedcaa67073408100b6a0abd5c7ddd6fa | Catalin(ux) M. BOIE | 2016-05-08 11:06:23 |
SELinux: permit access to /tmp | b33571b8aa45d49053ef20cbb485ef36dc6f5e49 | Catalin(ux) M. BOIE | 2016-05-08 11:05:44 |
TODO changes | 55917d4f8f63aefcac02b4c583dbe252ee04aa87 | Catalin(ux) M. BOIE | 2016-05-08 11:04:35 |
Get rid of php-mbstring: is not a standard extention | 0934a66ce1a94f4066b1b7e18edbe0acb4dd3206 | Catalin(ux) M. BOIE | 2016-05-08 11:04:20 |
Corrected set_pass function cache actions | e6fd4033b3018fb20d22f6e29c162b4330ec935f | Catalin(ux) M. BOIE | 2016-04-25 05:20:03 |
Cosmetic changes for config file | 746371ed9154915f748f8b0bd95293e823673193 | Catalin(ux) M. BOIE | 2016-04-24 11:10:10 |
Add build_jobs table to statistics | 37730a66237d430bd5a17edd9605054e694d7649 | Catalin(ux) M. BOIE | 2016-04-24 10:58:46 |
More changes to support RedHat derivates | 9ac924d9ba12145d4f01d446f5141b016329eea5 | Catalin(ux) M. BOIE | 2016-04-24 10:52:44 |
Do not give internal errors if commit ID is wrong | 24f863dcb0cbc5def61e820f9aa2368e61cce860 | Catalin(ux) M. BOIE | 2016-04-24 10:48:06 |
Added web instructions for RedHat based distributions | cc493d13f83fd121cee56d7e0da1ec742d37b774 | Catalin(ux) M. BOIE | 2016-04-23 17:14:45 |
File | Lines added | Lines deleted |
---|---|---|
inc/admin.inc.php | 3 | 3 |
File inc/admin.inc.php changed (mode: 100644) (index 3967fae..06851c6) | |||
... | ... | function rg_admin_report1($db, $rg) | |
380 | 380 | } | } |
381 | 381 | $body .= "\n"; | $body .= "\n"; |
382 | 382 | ||
383 | $sql = "SELECT username, realname FROM users" | ||
384 | . " WHERE itime >= $y_start" | ||
385 | . " AND itime <= $y_end"; | ||
383 | $sql = 'SELECT username, realname, email FROM users' | ||
384 | . ' WHERE itime >= ' . $y_start | ||
385 | . ' AND itime <= ' . $y_end; | ||
386 | 386 | $res = rg_sql_query($db, $sql); | $res = rg_sql_query($db, $sql); |
387 | 387 | if ($res === FALSE) { | if ($res === FALSE) { |
388 | 388 | $users = "ERR"; | $users = "ERR"; |