Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
addons
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
24
Issues
24
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
hubzilla
addons
Commits
ae027248
Commit
ae027248
authored
Aug 09, 2019
by
Max Kostikov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unnecessary bracket
parent
893cf538
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
twitter/twitter.php
twitter/twitter.php
+1
-1
No files found.
twitter/twitter.php
View file @
ae027248
...
...
@@ -179,7 +179,7 @@ function twitter_short_message(&$msg, $link, $limit, $shortlink = true) {
if
(
strlen
(
$msg
.
" "
.
$link
)
>
$limit
)
{
$msg
=
substr
(
$msg
,
0
,
(
$limit
-
strlen
(
$link
)));
if
(
substr
(
$msg
,
-
1
)
!=
"
\n
"
)
$msg
=
rtrim
(
substr
(
$msg
,
0
,
strrpos
(
$msg
,
" "
)),
"?.,:;!-
)
"
)
.
"..."
;
$msg
=
rtrim
(
substr
(
$msg
,
0
,
strrpos
(
$msg
,
" "
)),
"?.,:;!-"
)
.
"..."
;
}
$msg
.=
" "
.
$link
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment