summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-02-15 19:06:21 +0000
committerDries Buytaert <dries@buytaert.net>2010-02-15 19:06:21 +0000
commite27ed9eebb2b79ae7eec3cc2044950ada07db580 (patch)
tree1305ea9418714d6c4fa965d185a537ecd31924ba
parent8b8ab4a548f345e68e931f5fb295417be1666797 (diff)
downloadbrdo-e27ed9eebb2b79ae7eec3cc2044950ada07db580.tar.gz
brdo-e27ed9eebb2b79ae7eec3cc2044950ada07db580.tar.bz2
- Patch #713746 by Jacine: warning message markup in block.js not consistent with theme_status_messages().
-rw-r--r--modules/block/block.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/block/block.js b/modules/block/block.js
index 95881cbb8..eb2dcc19a 100644
--- a/modules/block/block.js
+++ b/modules/block/block.js
@@ -79,7 +79,7 @@ Drupal.behaviors.blockDrag = {
// A custom message for the blocks page specifically.
Drupal.theme.tableDragChangedWarning = function () {
- return '<div class="warning">' + Drupal.theme('tableDragChangedMarker') + ' ' + Drupal.t('The changes to these blocks will not be saved until the <em>Save blocks</em> button is clicked.') + '</div>';
+ return '<div class="messages warning">' + Drupal.theme('tableDragChangedMarker') + ' ' + Drupal.t('The changes to these blocks will not be saved until the <em>Save blocks</em> button is clicked.') + '</div>';
};
// Add a handler so when a row is dropped, update fields dropped into new regions.