summaryrefslogtreecommitdiffstatshomepage
path: root/core/modules/views_ui/admin.inc
diff options
context:
space:
mode:
Diffstat (limited to 'core/modules/views_ui/admin.inc')
-rw-r--r--core/modules/views_ui/admin.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/modules/views_ui/admin.inc b/core/modules/views_ui/admin.inc
index b1c8d9c6a522..f93725a471d0 100644
--- a/core/modules/views_ui/admin.inc
+++ b/core/modules/views_ui/admin.inc
@@ -339,10 +339,10 @@ function views_ui_build_form_path($form_state) {
* #process callback for a button; determines if a button is the form's triggering element.
*
* The Form API has logic to determine the form's triggering element based on
- * the data in $_POST. However, it only checks buttons based on a single #value
+ * the data in POST. However, it only checks buttons based on a single #value
* per button. This function may be added to a button's #process callbacks to
* extend button click detection to support multiple #values per button. If the
- * data in $_POST matches any value in the button's #values array, then the
+ * data in POST matches any value in the button's #values array, then the
* button is detected as having been clicked. This can be used when the value
* (label) of the same logical button may be different based on context (e.g.,
* "Apply" vs. "Apply and continue").