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 {
4646/** An action method on a subclass of `System.Web.UI.Page`. */
4747private class WebFormActionMethod extends ActionMethod {
4848 WebFormActionMethod ( ) {
49- this .getDeclaringType ( ) .getBaseClass * ( ) instanceof SystemWebUIPageClass and
49+ this .getDeclaringType ( ) .getBaseClass + ( ) instanceof SystemWebUIPageClass and
5050 this .getAParameter ( ) .getType ( ) .getName ( ) .matches ( "%EventArgs" )
5151 }
5252
5353 override Callable getAnAuthorizingCallable ( ) {
54- result = this
54+ result = super . getAnAuthorizingCallable ( )
5555 or
5656 result .getDeclaringType ( ) = this .getDeclaringType ( ) and
5757 result .getName ( ) = "Page_Load"
You can’t perform that action at this time.
0 commit comments