summaryrefslogtreecommitdiff
path: root/classes
diff options
context:
space:
mode:
authorMike Frysinger <[email protected]>2013-05-19 03:19:55 -0400
committerMike Frysinger <[email protected]>2013-05-19 03:19:55 -0400
commit5bac322258e0d02b7209b42baa68c86786f751cb (patch)
tree23636d4328ce26cc35f9e4b6b15dd5fc51133846 /classes
parentcc0e24ba90e788dd6f8546d6e2570fcd3666e54b (diff)
document the date format string
I assumed the format string was related to strftime except all of the fields looked really weird. After digging in the code, this string is actually used with php's date(). Add a note for this so other people can jump quickly to the relevant documentation (which is useful for non-php peeps who have no idea what this is).
Diffstat (limited to 'classes')
-rw-r--r--classes/pref/prefs.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/pref/prefs.php b/classes/pref/prefs.php
index 425d4b0ac..dd62a4271 100644
--- a/classes/pref/prefs.php
+++ b/classes/pref/prefs.php
@@ -40,7 +40,7 @@ class Pref_Prefs extends Handler_Protected {
"FRESH_ARTICLE_MAX_AGE" => array(__("Maximum age of fresh articles (in hours)"), ""),
"HIDE_READ_FEEDS" => array(__("Hide feeds with no unread articles"), ""),
"HIDE_READ_SHOWS_SPECIAL" => array(__("Show special feeds when hiding read feeds"), ""),
- "LONG_DATE_FORMAT" => array(__("Long date format"), ""),
+ "LONG_DATE_FORMAT" => array(__("Long date format"), __("Follows php's <a href='http://php.net/manual/function.date.php'>date() function</a>")),
"ON_CATCHUP_SHOW_NEXT_FEED" => array(__("On catchup show next feed"), __("Automatically open next feed with unread articles after marking one as read")),
"PURGE_OLD_DAYS" => array(__("Purge articles after this number of days (0 - disables)"), ""),
"PURGE_UNREAD_ARTICLES" => array(__("Purge unread articles"), ""),