Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Upstream
Gitea
Commits
8aa0a767
Commit
8aa0a767
authored
9 years ago
by
Unknwon
Browse files
Options
Download
Email Patches
Plain Diff
#3327 fix wrong table name in Join
parent
2d76de25
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
README.md
+1
-1
README.md
gogs.go
+1
-1
gogs.go
models/issue.go
+1
-1
models/issue.go
templates/.VERSION
+1
-1
templates/.VERSION
with
4 additions
and
4 deletions
+4
-4
README.md
View file @
8aa0a767
...
...
@@ -3,7 +3,7 @@ Gogs - Go Git Service [
##### Current tip version: 0.9.5
7
(see [Releases](https://github.com/gogits/gogs/releases) for binary versions)
##### Current tip version: 0.9.5
8
(see [Releases](https://github.com/gogits/gogs/releases) for binary versions)
| Web | UI | Preview |
|:-------------:|:-------:|:-------:|
...
...
This diff is collapsed.
Click to expand it.
gogs.go
View file @
8aa0a767
...
...
@@ -17,7 +17,7 @@ import (
"github.com/gogits/gogs/modules/setting"
)
const
APP_VER
=
"0.9.5
7
.0726"
const
APP_VER
=
"0.9.5
8
.0726"
func
init
()
{
runtime
.
GOMAXPROCS
(
runtime
.
NumCPU
())
...
...
This diff is collapsed.
Click to expand it.
models/issue.go
View file @
8aa0a767
...
...
@@ -567,7 +567,7 @@ func Issues(opts *IssuesOptions) ([]*Issue, error) {
if
len
(
opts
.
Labels
)
>
0
&&
opts
.
Labels
!=
"0"
{
labelIDs
:=
base
.
StringsToInt64s
(
strings
.
Split
(
opts
.
Labels
,
","
))
if
len
(
labelIDs
)
>
0
{
sess
.
Join
(
"INNER"
,
"issue_label"
,
"issue.id = issue_label.issue_id"
)
.
In
(
"issue.label_id"
,
labelIDs
)
sess
.
Join
(
"INNER"
,
"issue_label"
,
"issue.id = issue_label.issue_id"
)
.
In
(
"issue
_label
.label_id"
,
labelIDs
)
}
}
...
...
This diff is collapsed.
Click to expand it.
templates/.VERSION
View file @
8aa0a767
0.9.57.0726
\ No newline at end of file
0.9.58.0726
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment