File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
csharp/ql/lib/semmle/code/csharp/security/auth Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -46,12 +46,12 @@ private class MvcActionMethod extends ActionMethod {
46
46
/** An action method on a subclass of `System.Web.UI.Page`. */
47
47
private class WebFormActionMethod extends ActionMethod {
48
48
WebFormActionMethod ( ) {
49
- this .getDeclaringType ( ) .getBaseClass * ( ) instanceof SystemWebUIPageClass and
49
+ this .getDeclaringType ( ) .getBaseClass + ( ) instanceof SystemWebUIPageClass and
50
50
this .getAParameter ( ) .getType ( ) .getName ( ) .matches ( "%EventArgs" )
51
51
}
52
52
53
53
override Callable getAnAuthorizingCallable ( ) {
54
- result = this
54
+ result = super . getAnAuthorizingCallable ( )
55
55
or
56
56
result .getDeclaringType ( ) = this .getDeclaringType ( ) and
57
57
result .getName ( ) = "Page_Load"
You can’t perform that action at this time.
0 commit comments