summaryrefslogtreecommitdiffstats
path: root/createStory.php
diff options
context:
space:
mode:
Diffstat (limited to 'createStory.php')
-rw-r--r--createStory.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/createStory.php b/createStory.php
index 906a302..6a115d9 100644
--- a/createStory.php
+++ b/createStory.php
@@ -13,7 +13,7 @@ $storyName = getMandatoryPostParameter('story-name', '', true);
$storyLogoFile = getOptionalPostParameter('story-logo');
$storyDescription = getOptionalPostParameter('story-description');
-$pathToStory = __DIR__.DIRECTORY_SEPARATOR.generateDirectoryName($storyName);
+$pathToStory = __DIR__.DIRECTORY_SEPARATOR.'stories'.DIRECTORY_SEPARATOR.generateDirectoryName($storyName);
$result = createEntity($pathToStory, $storyDescription, $storyLogoFile, 'logo.png');
if (TRUE !== $result) {