diff --git a/ghost/admin/app/components/settings/analytics.hbs b/ghost/admin/app/components/settings/analytics.hbs index 9a7168da14..96938f0e97 100644 --- a/ghost/admin/app/components/settings/analytics.hbs +++ b/ghost/admin/app/components/settings/analytics.hbs @@ -99,23 +99,21 @@ -{{#if (feature 'makingItRain')}} -
-

Posts

-
-
-
-
-

Export post analytics

-

- Download a single, glorious CSV file with all your post analytics -

-
- +
+

Posts

+
+
+
+
+

Export post analytics

+

+ Download a single, glorious CSV file with all your post analytics +

+
-
-
-{{/if}} \ No newline at end of file +
+
+
diff --git a/ghost/core/core/server/api/endpoints/posts.js b/ghost/core/core/server/api/endpoints/posts.js index 83505fd2dc..ccaa2e90ad 100644 --- a/ghost/core/core/server/api/endpoints/posts.js +++ b/ghost/core/core/server/api/endpoints/posts.js @@ -68,7 +68,7 @@ module.exports = { type: 'csv', value() { const datetime = (new Date()).toJSON().substring(0, 10); - return `posts.${datetime}.csv`; + return `post-analytics.${datetime}.csv`; } } },