on the path_condition_info() the last labels is misspelled. The code is:
'workflow_ng_condition_alias_exists' => array(
'#label' => t('URL alias exists)'),
'#module' => 'Path',
when it should be:
'workflow_ng_condition_alias_exists' => array(
'#label' => t('URL alias exists'),
'#module' => 'Path',
| Comment | File | Size | Author |
|---|---|---|---|
| #5 | workflow_ng_path.patch | 348 bytes | avpaderno |
| #2 | workflow_ng_path.inc_.patch | 101 bytes | avpaderno |
Comments
Comment #1
fagothanks, could you create a patch?
Comment #2
avpadernoDone.
Comment #3
amitaibuHi Kiam,
This patch doesn't look right.
You should follow this - http://drupal.org/patch/create
In short, use this code
diff -upN original_directory new_directory > filename.patchin your cygwin installation.Basically I could do it myself, but it's probably better for you to learn so we have another active member in the wf_ng area :)
If you need help let me know.
Comment #4
avpadernoI guess I should have created a patch for the full directory containing the module files, and not the patch for the single file.
I need a different program to do that, then; WinMerge does not create patches for full directories.
Comment #5
avpadernoComment #6
amitaibuTested by eye - seems to be ok. setting to RTBC.
Comment #7
avpadernoComment #8
fagoto be accurate, the patch should be created for the whole modules' directory.
But anyhow, I know where to find the path.inc .. thanks, committed. :)