Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
W
WordPress_SexHackMe_Plugin
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
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
SexHackMe
WordPress_SexHackMe_Plugin
Commits
21595f77
Commit
21595f77
authored
Sep 18, 2023
by
Franco (nextime) Lanza
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor bug fixes
parent
c217ddd7
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
15 additions
and
9 deletions
+15
-9
class-query.php
includes/class-query.php
+1
-1
class-videostream.php
includes/class-videostream.php
+1
-1
functions-core.php
includes/functions-core.php
+2
-2
functions-utils.php
includes/functions-utils.php
+7
-0
video.php
templates/video.php
+4
-5
No files found.
includes/class-query.php
View file @
21595f77
...
...
@@ -257,7 +257,7 @@ if(!class_exists('SH_Query')) {
if
(
!
$idtype
)
return
false
;
$sql
=
"SELECT * FROM
{
$wpdb
->
prefix
}
"
.
SH_PREFIX
.
"videos WHERE
{
$idtype
}
="
.
intval
(
$id
);
$sql
=
"SELECT * FROM
{
$wpdb
->
prefix
}
"
.
SH_PREFIX
.
"videos WHERE
{
$idtype
}
="
.
intval
(
$id
)
.
" ORDER BY created DESC"
;
$dbres
=
$wpdb
->
get_results
(
$sql
);
if
(
is_array
(
$dbres
)
&&
count
(
$dbres
)
>
0
)
{
...
...
includes/class-videostream.php
View file @
21595f77
...
...
@@ -44,7 +44,7 @@ class SH_VideoStream
{
$this
->
path
=
$filePath
;
$this
->
filename
=
basename
(
$filePath
);
$this
->
m
y
me_type
=
sh_mime_type
(
$filePath
);
$this
->
m
i
me_type
=
sh_mime_type
(
$filePath
);
$this
->
download_type
=
$download
;
}
...
...
includes/functions-core.php
View file @
21595f77
...
...
@@ -74,12 +74,12 @@ function sh_genpass_register_form()
function
sh_hls_player
(
$video_url
,
$posters
=
''
)
{
echo
SH_VideoPlayer
::
addPlayer
(
'hls'
,
$video_url
,
$posters
);
SH_VideoPlayer
::
addPlayer
(
'hls'
,
$video_url
,
$posters
);
}
function
sh_xr_player
(
$video_url
,
$posters
=
''
,
$projection
=
'180_LR'
)
{
echo
SH_VideoPlayer
::
addPlayer
(
'xr'
,
$video_url
,
$posters
,
$projection
);
SH_VideoPlayer
::
addPlayer
(
'xr'
,
$video_url
,
$posters
,
$projection
);
}
function
sh_fix_user_with_no_plan
(
$userid
)
...
...
includes/functions-utils.php
View file @
21595f77
...
...
@@ -357,6 +357,13 @@ function sh_mime_type($filename) {
'qt'
=>
'video/quicktime'
,
'mov'
=>
'video/quicktime'
,
'm3u8'
=>
'application/vnd.apple.mpegurl'
,
'm4v'
=>
"video/mp4"
,
'mp4'
=>
"video/mp4"
,
'm4a'
=>
"audio/mp4"
,
'm4s'
=>
"video/iso.segment"
,
'init'
=>
"video/mp4"
,
'header'
=>
"video/mp4"
,
'ts'
=>
"video/MP2T"
,
// adobe
'pdf'
=>
'application/pdf'
,
...
...
templates/video.php
View file @
21595f77
...
...
@@ -219,21 +219,20 @@ get_header(); ?>
else
if
(
$gif_preview
)
echo
'<img class="sexhack_videopreview" src="'
.
$gif_preview
.
'" loading="lazy"></img>'
;
else
echo
'<img class="sexhack_videopreview" src="'
.
$thumb
.
'" loading="lazy"></img>'
;
?>
<h2
class=
'sexhack-videonotify'
><b>
PUBLIC VIDEO NOT AVAILABLE
</b></h2>
<h2
class=
'sexhack-videonotify'
style=
"padding:5%;"
><b>
PUBLIC VIDEO NOT AVAILABLE
</b></h2>
<?php
/*
if
(
$hls_members
)
{
?>
<h3
><a href="">members version here
!</a></h3>
<h3
class=
'sexhack-videonotify'
style=
"padding:1px;"
><a
href=
"/register/"
>
Register for free and watch members version
!
</a></h3>
<?php
}
if
(
$hls_premium
)
{
?>
<h3
><a href="">Premium users version here
!</a></h3>
<h3
class=
'sexhack-videonotify'
style=
"padding:1px;"
><a
href=
""
>
Register to watch premium version
!
</a></h3>
<?php
}
*/
}
?>
</div>
<!-- video container -->
...
...
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