Skip to content

Commit 2f90f0e

Browse files
committed
Fix wrong directory names of Elements and Layouts
- Element -> Elements - Layout -> Layouts
1 parent 49ce87e commit 2f90f0e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/org/cakephp/netbeans/module/CakePhp2ModuleImpl.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,10 +142,10 @@ public FileObject getDirectory(DIR_TYPE type, FILE_TYPE fileType, String pluginN
142142
sb.append(DIR_HELPER);
143143
break;
144144
case ELEMENT:
145-
sb.append("View/Element"); // NOI18
145+
sb.append("View/Elements"); // NOI18
146146
break;
147147
case LAYOUT:
148-
sb.append("View/Layout"); // NOI18
148+
sb.append("View/Layouts"); // NOI18
149149
break;
150150
case BEHAVIOR:
151151
sb.append("Model/"); // NOI18

0 commit comments

Comments
 (0)