Browse Source

Code formating

Vova Tkach 6 years ago
parent
commit
9357de0b1a
1 changed files with 2 additions and 2 deletions
  1. 2 2
      modules/module_blog_categories.go

+ 2 - 2
modules/module_blog_categories.go

@@ -131,8 +131,8 @@ func (this *Modules) blog_ActionCategoryAdd(wrap *wrapper.Wrapper, pf_id, pf_nam
 
 func (this *Modules) blog_ActionCategoryUpdate(wrap *wrapper.Wrapper, pf_id, pf_name, pf_alias, pf_parent string) error {
 	// TODO: add parent change updates if parent was changed
-	_, err := wrap.DB.Query(
-		`UPDATE blog_cats SET
+	_, err := wrap.DB.Query(`
+		UPDATE blog_cats SET
 			name = ?,
 			alias = ?
 		WHERE