mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-12-04 10:48:52 +00:00
Merge "Don't log missing ETags when creating a new page, that's normal"
This commit is contained in:
commit
a249a7b69b
|
@ -280,7 +280,8 @@ class ApiVisualEditorEdit extends ApiVisualEditor {
|
|||
$path .= '/' . $parserParams['oldid'];
|
||||
}
|
||||
// Adapted from RESTBase mwUtil.parseETag()
|
||||
if ( !preg_match( '/
|
||||
// ETag is not expected when creating a new page (oldid=0)
|
||||
if ( isset( $parserParams['oldid'] ) && $parserParams['oldid'] && !preg_match( '/
|
||||
^(?:W\\/)?"?
|
||||
([^"\\/]+)
|
||||
(?:\\/([0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}))
|
||||
|
|
Loading…
Reference in a new issue