diff options
author | Steve Manuel <nilslice@gmail.com> | 2016-12-06 00:10:19 -0800 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2016-12-06 00:10:19 -0800 |
commit | 8ad81923d89ff85cbcbf870d671a978cc933e118 (patch) | |
tree | e13d6873b475ea98f85cca1a2860443006e430e1 /management | |
parent | e392a85c60a10e652fa1f028b77441e2e0fe3bfb (diff) |
adding print debug to test
Diffstat (limited to 'management')
-rw-r--r-- | management/editor/elements.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/management/editor/elements.go b/management/editor/elements.go index 9fd9d4e..7cb4f69 100644 --- a/management/editor/elements.go +++ b/management/editor/elements.go @@ -341,6 +341,7 @@ func Tags(fieldName string, p interface{}, attrs map[string]string) []byte { // get the saved tags if this is already an existing post values := valueFromStructField(fieldName, p) + fmt.Println(values) var tags []string if strings.Contains(values, "__ponzu") { tags = strings.Split(values, "__ponzu") |