Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 3379 | Rev 3381 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 3379 Rev 3380
Línea 245... Línea 245...
245
            
245
            
Línea 246... Línea 246...
246
 
246
 
247
            $password  = md5('user-' . $currentUser->uuid . '-post-' . $post->uuid . '-timestamp-' . $timestamp . '-rand-' . $rand . '-share-key-' . $currentUser->share_key) ;
247
            $password  = md5('user-' . $currentUser->uuid . '-post-' . $post->uuid . '-timestamp-' . $timestamp . '-rand-' . $rand . '-share-key-' . $currentUser->share_key) ;
248
            
248
            
249
            
249
            
250
            $params = [
250
            $share_params = [
251
                'type' => 'post',
251
                'type' => 'post',
252
                'code' => $post->uuid,
252
                'code' => $post->uuid,
253
                'user' => $currentUser->uuid,
253
                'user' => $currentUser->uuid,
Línea 254... Línea 254...
254
                'timestamp' => $timestamp,
254
                'timestamp' => $timestamp,
Línea 255... Línea 255...
255
                'rand' => $rand,
255
                'rand' => $rand,
256
                'password' => $password,
256
                'password' => $password,
257
            ];
257
            ];
258
            
258