hgtonight
MVPhgtonight MVP
This is an activity!
Reactions
-
Re: setlocale and php 5.6
According to the documentation, http://php.net/manual/en/function.setlocale.php. The acceptable strings for locales are dependent upon the system. You can get the current setting by calling setlocale… (View Post)1 -
Re: how to update pre tag to code tag in DB
I would dump the db to an sql file, do my replacements there, then import the SQL file. It doesn't look like MySQL provides a regex function, but I am no MySQL expert. (View Post)2 -
Re: Data and parameters in vanilla popup form
You are looking to use the Gdn_Controller::jsonTarget() method. E.g. $this->jsonTarget('#DOM_Selector', '<markup>Will be appended</markup>', 'Append'); The other methods available are … (View Post)7 -
Re: Is there any way to include post attachments in the email notification?
It is not possible to include the attachments. It would be difficult to add the text "this message has 2 attachments" without modifying core files as the notification queue is a private mem… (View Post)2 -
Re: time difference
@jackmaessen You can change the 'guest' timezone via a configuration if most of your users are in a specific timezone. Add this to your /conf/config.php file: $Configuration['Garden']['GuestTimeZone'… (View Post)1