This website requires JavaScript.
Explore
Help
Sign In
dbxe
/
fusionpbx
Watch
2
Star
0
Fork
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
Files
24b30d9bbcaa6e671b50703f9c98435a61154299
fusionpbx
/
includes
/
install
/
scripts
/
resources
/
functions
/
trim.lua
T
7 lines
113 B
Lua
Raw
Normal View
History
Unescape
Escape
Add voicemail with multi-lingual voicemail to email templates. Voicemail.lua has been broken down to individual files and a few additional directories to make it easier to manage in the long run.
2013-01-19 00:16:01 +00:00
--add the trim function
function
trim
(
s
)
Update the method to connect to the database with lua.
2013-04-29 23:29:46 +00:00
if
(
s
)
then
return
s
:
gsub
(
"^%s+"
,
""
):
gsub
(
"%s+$"
,
""
)
end
Add voicemail with multi-lingual voicemail to email templates. Voicemail.lua has been broken down to individual files and a few additional directories to make it easier to manage in the long run.
2013-01-19 00:16:01 +00:00
end
Reference in New Issue
Copy Permalink