This website requires JavaScript.
Explore
Help
Sign In
dbxe
/
fusionpbx
Watch
2
Star
0
Fork
You've already forked fusionpbx
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
df48067467
fusionpbx
/
includes
/
install
/
scripts
/
resources
/
functions
/
trim.lua
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 01:16:01 +01:00
--add the trim function
function
trim
(
s
)
Update the method to connect to the database with lua.
2013-04-30 01:29:46 +02: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 01:16:01 +01:00
end