Skip to content

Commit 7f695b4

Browse files
authored
Merge pull request #157 from serdnab/cat-desc-val-length
length validation of category description
2 parents 7918f8c + ffeeaac commit 7f695b4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

BlogEngine/BlogEngine.NET/admin/app/content/categories/categoryController.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,8 @@
8080
bindCommon();
8181
$('#form').validate({
8282
rules: {
83-
txtSlug: { required: true }
83+
txtSlug: { required: true },
84+
txtExcerpt: { maxlength: 200 }
8485
}
8586
});
8687
});

0 commit comments

Comments
 (0)