summaryrefslogtreecommitdiff
path: root/modules/node/tests
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-12-22 14:19:25 +0000
committerDries Buytaert <dries@buytaert.net>2009-12-22 14:19:25 +0000
commitcf7cb6b65caae39a2491db8732148d717a21db1f (patch)
tree1ef2683e5dc13866072c73e135cbaeb8cbfa2176 /modules/node/tests
parentddddbb89a66f03c1abb22d038d6f5176299c6f46 (diff)
downloadbrdo-cf7cb6b65caae39a2491db8732148d717a21db1f.tar.gz
brdo-cf7cb6b65caae39a2491db8732148d717a21db1f.tar.bz2
- Patch #635094 by plach: switching from zxx to und as it is semantically more correct.
Diffstat (limited to 'modules/node/tests')
-rw-r--r--modules/node/tests/node_test_exception.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/node/tests/node_test_exception.module b/modules/node/tests/node_test_exception.module
index a8191a58c..c7edc8f24 100644
--- a/modules/node/tests/node_test_exception.module
+++ b/modules/node/tests/node_test_exception.module
@@ -11,7 +11,7 @@
* Implements hook_node_insert().
*/
function node_test_exception_node_insert($node) {
- if ($node->title['zxx'][0]['value'] == 'testing_transaction_exception') {
+ if ($node->title[LANGUAGE_NONE][0]['value'] == 'testing_transaction_exception') {
throw new Exception('Test exception for rollback.');
}
}