Changeset 2332701
- Timestamp:
- 06/30/2020 05:08:16 AM (6 years ago)
- Location:
- hyvor-talk/trunk
- Files:
-
- 6 edited
-
html/admin.php (modified) (1 diff)
-
html/variables.php (modified) (1 diff)
-
inc/class-hyvor-talk-admin.php (modified) (1 diff)
-
inc/class-hyvor-talk-webpage.php (modified) (1 diff)
-
inc/class-hyvor-talk.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
hyvor-talk/trunk/html/admin.php
r2251818 r2332701 99 99 100 100 <div class="dual-item-right"> 101 <input102 placeholder="SSO Id"103 type="text"104 name="talk-sso-id"105 id="talk-sso-id-input"106 class="input-item"107 value="<?= $ssoId ?? '' ?>">108 101 <input 109 102 placeholder="SSO Private Key" -
hyvor-talk/trunk/html/variables.php
r2251818 r2332701 46 46 <?php if ($ssoData) : ?> 47 47 HYVOR_TALK_CONFIG.sso = { 48 id: <?= $ssoData['id'] ?>,49 48 hash: "<?= $ssoHash ?>", 50 49 userData: "<?= $ssoEncodedUserData ?>", -
hyvor-talk/trunk/inc/class-hyvor-talk-admin.php
r2251818 r2332701 292 292 HyvorTalk::setLoadingMode( $_POST['loadingMode'] ); 293 293 294 if ( isset($_POST['ssoId']) )295 HyvorTalk::setSSOId( $_POST['ssoId'] );296 297 294 if ( isset($_POST['ssoPrivateKey']) ) 298 295 HyvorTalk::setSSOPrivateKey( $_POST['ssoPrivateKey'] ); -
hyvor-talk/trunk/inc/class-hyvor-talk-webpage.php
r2256704 r2332701 138 138 'email' => $user -> user_email, 139 139 'picture' => get_avatar_url($user -> ID), 140 'url' => $user -> url140 'url' => get_author_posts_url( $user -> ID ) 141 141 ]; 142 142 } -
hyvor-talk/trunk/inc/class-hyvor-talk.php
r2256704 r2332701 176 176 update_option( self::LOADING_MODE_OPTION_NAME, $mode ); 177 177 } 178 // updates the sso ID179 public static function setSSOId($ssoId) {180 update_option( self::SSO_ID_OPTION_NAME, $ssoId );181 }182 178 // updates the SSO Private Key 183 179 public static function setSSOPrivateKey($key) { -
hyvor-talk/trunk/readme.txt
r2256704 r2332701 1 1 === Comments by Hyvor Talk === 2 2 Contributors: hyvor, supunkavinda 3 Tags: comments, comment, ajax comments, reactions, spam, notifications, disqus, embedded 4 Donate Link: https://paypal.me/HyvorTalk 3 Tags: comments, commenting system, commenting platform, commenting plugin 5 4 Requires at least: 4.6 6 Tested up to: 5. 3.27 Stable tag: 1.2. 15 Tested up to: 5.4.2 6 Stable tag: 1.2.2 8 7 Requires PHP: 5.4 9 8 License: GPLv2 … … 130 129 Comments are saved on our databases and backed up frequently to an external server. So, your comments are safe! 131 130 132 = Who owns the comments? =133 134 The commenter owns the comment. He can edit or delete his comment, and moderators has no access to a comment deleted by the commenter. If a moderator deletes a comment from the website, the commenter can still see it but can't restore it (Only moderator can).135 136 131 = Can I import my existing WordPress comments into Hyvor Talk? = 137 132 … … 174 169 == Change Log == 175 170 171 = 1.2.2 = 172 * SSO ID removed 173 * SSO uses the user profile as the user's URL 174 176 175 = 1.2.1 = 177 176 * Custom identifiers added (To support third-party importing)
Note: See TracChangeset
for help on using the changeset viewer.